mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
27 lines
541 B
Plaintext
27 lines
541 B
Plaintext
error: generic arguments in macro path
|
|
--> $DIR/macro-ty-params.rs:10:10
|
|
|
|
|
LL | foo::<T>!();
|
|
| ^^^
|
|
|
|
error: generic arguments in macro path
|
|
--> $DIR/macro-ty-params.rs:11:10
|
|
|
|
|
LL | foo::<>!();
|
|
| ^^
|
|
|
|
error: unexpected generic arguments in path
|
|
--> $DIR/macro-ty-params.rs:12:15
|
|
|
|
|
LL | m!(Default<>);
|
|
| ^^
|
|
|
|
error: generic arguments in macro path
|
|
--> $DIR/macro-ty-params.rs:12:15
|
|
|
|
|
LL | m!(Default<>);
|
|
| ^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|