diff options
| author | Christian Poveda <christianpoveda@protonmail.com> | 2018-04-15 09:41:10 -0500 |
|---|---|---|
| committer | Christian Poveda <christianpoveda@protonmail.com> | 2018-04-27 10:05:57 -0500 |
| commit | 72a8eb92b083b22c610512c9c89c6bc97660de34 (patch) | |
| tree | 8340e0c9e331c5425649df40aeb138a91a600686 /src/libsyntax | |
| parent | 4bf35f93c9e753b413a9ff5b2a79ae5b1efbd4b8 (diff) | |
| download | rust-72a8eb92b083b22c610512c9c89c6bc97660de34.tar.gz rust-72a8eb92b083b22c610512c9c89c6bc97660de34.zip | |
fixed rustc version for dyn_trait
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index c4a0ec259b4..6ab8a54cf96 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -590,7 +590,7 @@ declare_features! ( // Allows #[target_feature(...)] (accepted, target_feature, "1.27.0", None, None), // Trait object syntax with `dyn` prefix - (accepted, dyn_trait, "1.22.0", Some(44662), None), + (accepted, dyn_trait, "1.27.0", Some(44662), None), ); // If you change this, please modify src/doc/unstable-book as well. You must |
