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

21 lines
409 B
Plaintext
Raw Normal View History

2018-12-26 18:07:00 -06:00
error: generic arguments in macro path
2019-01-19 21:25:28 -06:00
--> $DIR/macro-ty-params.rs:10:10
2017-08-21 16:54:03 -05:00
|
2019-03-09 06:03:44 -06:00
LL | foo::<T>!();
2019-01-19 21:25:28 -06:00
| ^^^
2017-08-21 16:54:03 -05:00
error: generic arguments in macro path
2019-01-19 21:25:28 -06:00
--> $DIR/macro-ty-params.rs:11:10
|
2019-03-09 06:03:44 -06:00
LL | foo::<>!();
2019-01-19 21:25:28 -06:00
| ^^
error: generic arguments in macro path
2018-12-26 18:07:00 -06:00
--> $DIR/macro-ty-params.rs:12:15
|
2019-03-09 06:03:44 -06:00
LL | m!(Default<>);
| ^^
2019-12-05 06:53:56 -06:00
error: aborting due to 3 previous errors
2018-12-26 18:07:00 -06:00