]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-60989.stderr
Rollup merge of #61263 - GuillaumeGomez:valid-html, r=Manishearth
[rust.git] / src / test / ui / issues / issue-60989.stderr
1 error[E0109]: type arguments are not allowed for this type
2   --> $DIR/issue-60989.rs:12:10
3    |
4 LL |     c1::<()>;
5    |          ^^ type argument not allowed
6
7 error[E0109]: type arguments are not allowed for this type
8   --> $DIR/issue-60989.rs:16:10
9    |
10 LL |     c1::<dyn Into<B>>;
11    |          ^^^^^^^^^^^ type argument not allowed
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0109`.