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

27 lines
538 B
Plaintext
Raw Normal View History

2017-08-21 14:54:03 -07:00
error: unexpected generic arguments in path
--> $DIR/macro-ty-params.rs:20:8
|
20 | m!(MyTrait<>);
| ^^^^^^^^^
error: generic arguments in macro path
--> $DIR/macro-ty-params.rs:18:8
|
18 | foo::<T>!();
| ^^^^^
error: generic arguments in macro path
2017-08-21 14:54:03 -07:00
--> $DIR/macro-ty-params.rs:19:8
|
2017-08-21 14:54:03 -07:00
19 | foo::<>!();
| ^^^^
error: generic arguments in macro path
2017-08-21 14:54:03 -07:00
--> $DIR/macro-ty-params.rs:20:15
|
2017-08-21 14:54:03 -07:00
20 | m!(MyTrait<>);
| ^^
2017-08-21 14:54:03 -07:00
error: aborting due to 5 previous errors