about summary refs log tree commit diff
path: root/src/test/ui/parser/trait-object-polytrait-priority.rs
blob: 40d2ad52c3574f3ffbad6267e0742ceaed226405 (plain)
1
2
3
4
5
6
7
8
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)
}