rust/src/test/ui/issues/issue-60989.stderr

16 lines
446 B
Plaintext
Raw Normal View History

error[E0109]: type arguments are not allowed for this type
--> $DIR/issue-60989.rs:12:10
|
LL | c1::<()>;
| ^^ type argument not allowed
error[E0109]: type arguments are not allowed for this type
--> $DIR/issue-60989.rs:16:10
|
2019-05-28 13:46:13 -05:00
LL | c1::<dyn Into<B>>;
| ^^^^^^^^^^^ type argument not allowed
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0109`.