rust/src/test/ui/unboxed-closures/unboxed-closure-feature-gate.stderr

13 lines
455 B
Plaintext
Raw Normal View History

2019-04-10 18:40:12 -05:00
error[E0658]: parenthetical notation is only stable when used with `Fn`-family traits
2018-12-25 09:56:47 -06:00
--> $DIR/unboxed-closure-feature-gate.rs:13:16
2018-08-08 07:28:26 -05:00
|
LL | let x: Box<Foo(isize)>;
| ^^^^^^^^^^
|
2019-04-10 18:40:12 -05:00
= note: for more information, see tracking issue #29625
2018-08-08 07:28:26 -05:00
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.