blob: 138cd2598a1c5f7ab38ec6558d6925086f87f591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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: aborting due to 3 previous errors
|