diff options
| author | Taylor Cramer <cramertj@google.com> | 2018-03-21 17:44:21 -0700 |
|---|---|---|
| committer | Taylor Cramer <cramertj@google.com> | 2018-03-26 07:39:38 +0200 |
| commit | c393db67baf3a15ec61351ffb0e3811e07b8a467 (patch) | |
| tree | 7788c1c955c4e0d056536409cc52a4f39cdf3187 /src/libsyntax | |
| parent | 445fafaa4b95fdde04751aa523b9e9f06e2c06ea (diff) | |
| download | rust-c393db67baf3a15ec61351ffb0e3811e07b8a467.tar.gz rust-c393db67baf3a15ec61351ffb0e3811e07b8a467.zip | |
Stabilize universal_impl_trait
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e69dace0c70..db900ed6e35 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -279,9 +279,6 @@ declare_features! ( // Allows `impl Trait` in function return types. (active, conservative_impl_trait, "1.12.0", Some(34511), None), - // Allows `impl Trait` in function arguments. - (active, universal_impl_trait, "1.23.0", Some(34511), None), - // Allows exhaustive pattern matching on types that contain uninhabited types. (active, exhaustive_patterns, "1.13.0", None, None), @@ -566,6 +563,8 @@ declare_features! ( // Copy/Clone closures (RFC 2132) (accepted, clone_closures, "1.26.0", Some(44490), None), (accepted, copy_closures, "1.26.0", Some(44490), None), + // Allows `impl Trait` in function arguments. + (accepted, universal_impl_trait, "1.26.0", Some(34511), None), ); // If you change this, please modify src/doc/unstable-book as well. You must |
