We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Gc
1 parent 747213a commit d97ce15Copy full SHA for d97ce15
src/librustc/front/feature_gate.rs
@@ -141,11 +141,9 @@ impl Visitor<()> for Context {
141
},
142
ast::ty_box(_) => {
143
self.gate_feature("managed_boxes", t.span,
144
- "The managed box syntax will be replaced \
145
- by a library type, and a garbage \
146
- collector is not yet implemented. \
147
- Consider using the `std::rc::Rc` type \
148
- for reference counted pointers.");
+ "The managed box syntax is being replaced by the `std::gc::Gc`
+ and `std::rc::Rc` types. Equivalent functionality to managed
+ trait objects will be implemented but is currently missing.");
149
}
150
_ => {}
151
0 commit comments