summary refs log tree commit diff
path: root/src/test/ui/span/macro-ty-params.stderr
blob: 1d2f7bb2f07e9777feb72826d7af48ceb8d78f15 (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
27
28
29
30
31
32
error: unexpected generic arguments in path
  --> $DIR/macro-ty-params.rs:20:8
   |
20 |     m!(MyTrait<>);
   |        ^^^^^^^^^

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
  --> $DIR/macro-ty-params.rs:19:8
   |
19 |     foo::<>!();
   |        ^^^^

error: generic arguments in macro path
  --> $DIR/macro-ty-params.rs:20:15
   |
20 |     m!(MyTrait<>);
   |               ^^

error: aborting due to 5 previous errors