]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/trait-object-lifetime-parens.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[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: expected `:`, found `)`
14   --> $DIR/trait-object-lifetime-parens.rs:9:19
15    |
16 LL |     let _: Box<('a) + Trait>;
17    |                   ^ expected `:`
18
19 error: expected type, found `'a`
20   --> $DIR/trait-object-lifetime-parens.rs:9:17
21    |
22 LL |     let _: Box<('a) + Trait>;
23    |         -       ^^ expected type
24    |         |
25    |         while parsing the type for `_`
26
27 error: aborting due to 4 previous errors
28