blob: 7023ef8cd1c33a43ad91d03e37b3da9c7026b288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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: generic arguments in macro path
--> $DIR/macro-ty-params.rs:12:15
|
LL | m!(Default<>);
| ^^
error: aborting due to 4 previous errors
|