]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/trait-object-lifetime-parens.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / parser / trait-object-lifetime-parens.stderr
1 error: parenthesized lifetime bounds are not supported
2   --> $DIR/trait-object-lifetime-parens.rs:5:21
3    |
4 LL | fn f<'a, T: Trait + ('a)>() {}
5    |                     ^^^^ help: remove the parentheses
6
7 error: parenthesized lifetime bounds are not supported
8   --> $DIR/trait-object-lifetime-parens.rs:8:24
9    |
10 LL |     let _: Box<Trait + ('a)>;
11    |                        ^^^^ help: remove the parentheses
12
13 error: lifetime in trait object type must be followed by `+`
14   --> $DIR/trait-object-lifetime-parens.rs:10:17
15    |
16 LL |     let _: Box<('a) + Trait>;
17    |                 ^^
18
19 error: aborting due to 3 previous errors
20