rust/src/test/ui/unboxed-closures/unboxed-closure-sugar-used-on-struct-1.stderr

10 lines
337 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0214]: parenthesized parameters may only be used with a trait
2018-12-25 09:56:47 -06:00
--> $DIR/unboxed-closure-sugar-used-on-struct-1.rs:8:19
2018-08-08 07:28:26 -05:00
|
LL | let x: Box<Bar()> = panic!();
| ^^ only traits may use parentheses
error: aborting due to previous error
For more information about this error, try `rustc --explain E0214`.