diff options
| author | bors <bors@rust-lang.org> | 2017-01-26 09:54:03 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-01-26 09:54:03 +0000 |
| commit | 5158501367de00d0b639a7840fba958f8da2f3c6 (patch) | |
| tree | 2419b282fd678c3ccb5a6d2f03c89862917d57b8 /src/libsyntax | |
| parent | 2f0463a4a4f323c4deffc861349e38c6b5091782 (diff) | |
| parent | af46d69b8a3d553a4d33e0c9d296b845c404e499 (diff) | |
| download | rust-5158501367de00d0b639a7840fba958f8da2f3c6.tar.gz rust-5158501367de00d0b639a7840fba958f8da2f3c6.zip | |
Auto merge of #39075 - est31:remove_reflect, r=nikomatsakis
Remove Reflect PR for removing the `Reflect` trait. Opened so that a crater run can be done for testing the impact: https://github.com/rust-lang/rust/issues/27749#issuecomment-272665163 Fixes #27749
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 3ce3e36d3c2..d4448da932e 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -124,7 +124,6 @@ declare_features! ( (active, advanced_slice_patterns, "1.0.0", Some(23121)), (active, box_syntax, "1.0.0", Some(27779)), (active, placement_in_syntax, "1.0.0", Some(27779)), - (active, reflect, "1.0.0", Some(27749)), (active, unboxed_closures, "1.0.0", Some(29625)), (active, allocator, "1.0.0", Some(27389)), @@ -337,6 +336,7 @@ declare_features! ( (removed, managed_boxes, "1.0.0", None), // Allows use of unary negate on unsigned integers, e.g. -e for e: u8 (removed, negate_unsigned, "1.0.0", Some(29645)), + (removed, reflect, "1.0.0", Some(27749)), // A way to temporarily opt out of opt in copy. This will *never* be accepted. (removed, opt_out_copy, "1.0.0", None), (removed, quad_precision_float, "1.0.0", None), @@ -734,10 +734,6 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG "unboxed_closures", "unboxed_closures are still evolving", cfg_fn!(unboxed_closures))), - ("rustc_reflect_like", Whitelisted, Gated(Stability::Unstable, - "reflect", - "defining reflective traits is still evolving", - cfg_fn!(reflect))), ("windows_subsystem", Whitelisted, Gated(Stability::Unstable, "windows_subsystem", |
