rust/src/test/ui/span/macro-ty-params.stderr

26 lines
703 B
Plaintext
Raw Normal View History

2017-08-21 16:54:03 -05:00
error: unexpected generic arguments in path
2018-12-25 09:56:47 -06:00
--> $DIR/macro-ty-params.rs:10:8
2017-08-21 16:54:03 -05:00
|
LL | foo::<T>!(); //~ ERROR generic arguments in macro path
| ^^^^^
2017-08-21 16:54:03 -05:00
error: generic arguments in macro path
2018-12-25 09:56:47 -06:00
--> $DIR/macro-ty-params.rs:10:15
|
LL | foo::<>!(); //~ ERROR generic arguments in macro path
| ^^^^
error: generic arguments in macro path
2018-12-25 09:56:47 -06:00
--> $DIR/macro-ty-params.rs:8:8
|
LL | m!(Default<>); //~ ERROR generic arguments in macro path
| ^^^^^^^^^
error: generic arguments in macro path
2018-12-25 09:56:47 -06:00
--> $DIR/macro-ty-params.rs:9:8
|
LL | m!(Default<>); //~ ERROR generic arguments in macro path
| ^^
error: aborting due to 4 previous errors