summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/parse/trait-path-missing-gen_arg.stderr
blob: 3ace774a041c7904931948e248ab45fe0aeb80c2 (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
42
43
error: expected one of `>`, a const expression, lifetime, or type, found `:`
  --> $DIR/trait-path-missing-gen_arg.rs:8:30
   |
LL |   fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
   |                              ^ expected one of `>`, a const expression, lifetime, or type
   |
help: expressions must be enclosed in braces to be used as const generic arguments
   |
LL |   fn f1<'a>(arg : Box<{ dyn X< : 32 } >>) {}
   |                       +             +

error: expected parameter name, found `>`
  --> $DIR/trait-path-missing-gen_arg.rs:8:36
   |
LL |   fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
   |                                    ^ expected parameter name

error: expected one of `!`, `)`, `+`, `,`, or `::`, found `>`
  --> $DIR/trait-path-missing-gen_arg.rs:8:36
   |
LL |   fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
   |                                    ^
   |                                    |
   |                                    expected one of `!`, `)`, `+`, `,`, or `::`
   |                                    help: missing `,`

error: expected one of `>`, a const expression, lifetime, or type, found `=`
  --> $DIR/trait-path-missing-gen_arg.rs:16:30
   |
LL |   fn f1<'a>(arg : Box<dyn X< = 32 >>) {}
   |                            - ^ expected one of `>`, a const expression, lifetime, or type
   |                            |
   |                            maybe try to close unmatched angle bracket

error[E0747]: constant provided when a type was expected
  --> $DIR/trait-path-missing-gen_arg.rs:8:23
   |
LL |   fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
   |                       ^^^^^^^^^^^

error: aborting due to 5 previous errors

For more information about this error, try `rustc --explain E0747`.