summary refs log tree commit diff
path: root/src/test/ui/parser/trait-object-lifetime-parens.stderr
blob: 319a308c0137c307bddf0b693ccc617fc02d0a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: parenthesized lifetime bounds are not supported
  --> $DIR/trait-object-lifetime-parens.rs:5:21
   |
LL | fn f<'a, T: Trait + ('a)>() {}
   |                     ^^^^ help: remove the parentheses

error: parenthesized lifetime bounds are not supported
  --> $DIR/trait-object-lifetime-parens.rs:8:24
   |
LL |     let _: Box<Trait + ('a)>;
   |                        ^^^^ help: remove the parentheses

error: expected `:`, found `)`
  --> $DIR/trait-object-lifetime-parens.rs:9:19
   |
LL |     let _: Box<('a) + Trait>;
   |                   ^ expected `:`

error: expected type, found `'a`
  --> $DIR/trait-object-lifetime-parens.rs:9:17
   |
LL |     let _: Box<('a) + Trait>;
   |         -       ^^ expected type
   |         |
   |         while parsing the type for `_`

error: aborting due to 4 previous errors