summaryrefslogtreecommitdiff
path: root/tests/ui/generic-associated-types/parse/trait-path-missing-gen_arg.stderr
blob: bfddb6dc693caac82c3acb63ca9e44e606fac0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: expected one of `>`, a const expression, lifetime, or type, found `:`
  --> $DIR/trait-path-missing-gen_arg.rs:6:30
   |
LL |   fn f1<'a>(arg : Box<dyn X< : 32 >>) {}
   |                              ^ expected one of `>`, a const expression, lifetime, or type

error: expected one of `>`, a const expression, lifetime, or type, found `=`
  --> $DIR/trait-path-missing-gen_arg.rs:11: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: aborting due to 2 previous errors