]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/missing-comma.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / macros / missing-comma.stderr
1 error: expected token: `,`
2   --> $DIR/missing-comma.rs:20:19
3    |
4 LL |     println!("{}" a);
5    |                   ^
6
7 error: no rules expected the token `b`
8   --> $DIR/missing-comma.rs:22:12
9    |
10 LL |     foo!(a b);
11    |           -^
12    |           |
13    |           help: missing comma here
14
15 error: no rules expected the token `e`
16   --> $DIR/missing-comma.rs:24:21
17    |
18 LL |     foo!(a, b, c, d e);
19    |                    -^
20    |                    |
21    |                    help: missing comma here
22
23 error: no rules expected the token `d`
24   --> $DIR/missing-comma.rs:26:18
25    |
26 LL |     foo!(a, b, c d, e);
27    |                 -^
28    |                 |
29    |                 help: missing comma here
30
31 error: no rules expected the token `d`
32   --> $DIR/missing-comma.rs:28:18
33    |
34 LL |     foo!(a, b, c d e);
35    |                  ^
36
37 error: aborting due to 5 previous errors
38