summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-60989.stderr
blob: e0236567b2fa609bb33d8934ef1cd41e87575ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0109]: type arguments are not allowed on local variable
  --> $DIR/issue-60989.rs:12:10
   |
LL |     c1::<()>;
   |     --   ^^ type argument not allowed
   |     |
   |     not allowed on local variable

error[E0109]: type arguments are not allowed on local variable
  --> $DIR/issue-60989.rs:16:10
   |
LL |     c1::<dyn Into<B>>;
   |     --   ^^^^^^^^^^^ type argument not allowed
   |     |
   |     not allowed on local variable

error: aborting due to 2 previous errors

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