rust/tests/ui/issues/issue-60989.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
554 B
Plaintext
Raw Normal View History

2022-06-01 23:55:30 +00:00
error[E0109]: type arguments are not allowed on local variable
--> $DIR/issue-60989.rs:12:10
|
LL | c1::<()>;
2022-06-01 23:55:30 +00:00
| -- ^^ type argument not allowed
| |
| not allowed on local variable
2022-06-01 23:55:30 +00:00
error[E0109]: type arguments are not allowed on local variable
--> $DIR/issue-60989.rs:16:10
|
2019-05-28 18:46:13 +00:00
LL | c1::<dyn Into<B>>;
2022-06-01 23:55:30 +00:00
| -- ^^^^^^^^^^^ 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`.