8 lines
249 B
Rust
8 lines
249 B
Rust
trait Trait<'a> {}
|
|
|
|
fn main() {
|
|
let _: &for<'a> Trait<'a> + 'static;
|
|
//~^ ERROR expected a path on the left-hand side of `+`, not `&for<'a> Trait<'a>`
|
|
//~| HELP try adding parentheses
|
|
//~| SUGGESTION &(for<'a> Trait<'a> + 'static)
|
|
}
|