blob: b0154773ca8fa47d2b4175f2df72af4023d36dee [file] [log] [blame] [edit]
error[E0178]: expected a path on the left-hand side of `+`
--> $DIR/trait-object-polytrait-priority.rs:7:12
|
LL | let _: &for<'a> Trait<'a> + 'static;
| ^^^^^^^^^^^^^^^^^^
|
help: try adding parentheses
|
LL | let _: &(for<'a> Trait<'a> + 'static);
| + +
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0178`.