summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/parse/trait-path-types.stderr
blob: fe9ed579e34afc1458b26d7ac06066be66e43567 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
error: expected one of `,`, `:`, or `>`, found `=`
  --> $DIR/trait-path-types.rs:8:37
   |
LL |   fn f<'a>(arg : Box<dyn X< [u8; 1] = u32>>) {}
   |                                   - ^ expected one of `,`, `:`, or `>`
   |                                   |
   |                                   maybe try to close unmatched angle bracket
   |
help: you might have meant to end the type parameters here
   |
LL |   fn f<'a>(arg : Box<dyn X< [u8; 1]> = u32>>) {}
   |                                    +

error: expected one of `,`, `:`, or `>`, found `=`
  --> $DIR/trait-path-types.rs:13:37
   |
LL |   fn f1<'a>(arg : Box<dyn X<(Y<'a>) = &'a ()>>) {}
   |                                   - ^ expected one of `,`, `:`, or `>`
   |                                   |
   |                                   maybe try to close unmatched angle bracket
   |
help: you might have meant to end the type parameters here
   |
LL |   fn f1<'a>(arg : Box<dyn X<(Y<'a>)> = &'a ()>>) {}
   |                                    +

error: expected one of `,`, `:`, or `>`, found `=`
  --> $DIR/trait-path-types.rs:18:33
   |
LL |   fn f1<'a>(arg : Box<dyn X< 'a = u32 >>) {}
   |                              -- ^ expected one of `,`, `:`, or `>`
   |                              |
   |                              maybe try to close unmatched angle bracket
   |
help: you might have meant to end the type parameters here
   |
LL |   fn f1<'a>(arg : Box<dyn X< 'a> = u32 >>) {}
   |                                +

error: aborting due to 3 previous errors