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
|
|
|
|
|
2018-12-16 11:23:27 -06:00
|
|
|
LL | foo::<T>!(); //~ ERROR generic arguments in macro path
|
2019-01-19 21:25:28 -06:00
|
|
|
| ^^^
|
2017-08-21 16:54:03 -05:00
|
|
|
|
2018-11-07 15:39:07 -06:00
|
|
|
error: generic arguments in macro path
|
2019-01-19 21:25:28 -06:00
|
|
|
--> $DIR/macro-ty-params.rs:11:10
|
2018-11-07 15:39:07 -06:00
|
|
|
|
|
2018-12-16 11:23:27 -06:00
|
|
|
LL | foo::<>!(); //~ ERROR generic arguments in macro path
|
2019-01-19 21:25:28 -06:00
|
|
|
| ^^
|
2018-11-07 15:39:07 -06:00
|
|
|
|
2018-12-26 18:07:00 -06:00
|
|
|
error: unexpected generic arguments in path
|
|
|
|
--> $DIR/macro-ty-params.rs:12:8
|
2017-07-23 12:50:56 -05:00
|
|
|
|
|
2018-12-16 11:23:27 -06:00
|
|
|
LL | m!(Default<>); //~ ERROR generic arguments in macro path
|
|
|
|
| ^^^^^^^^^
|
2017-07-23 12:50:56 -05:00
|
|
|
|
|
|
|
error: generic arguments in macro path
|
2018-12-26 18:07:00 -06:00
|
|
|
--> $DIR/macro-ty-params.rs:12:15
|
2017-07-23 12:50:56 -05:00
|
|
|
|
|
2018-12-16 11:23:27 -06:00
|
|
|
LL | m!(Default<>); //~ ERROR generic arguments in macro path
|
|
|
|
| ^^
|
2017-07-23 12:50:56 -05:00
|
|
|
|
2018-01-02 13:00:12 -06:00
|
|
|
error: aborting due to 4 previous errors
|
2018-12-26 18:07:00 -06:00
|
|
|
|