]> git.proxmox.com Git - rustc.git/blob - src/test/ui/proc-macro/three-equals.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / proc-macro / three-equals.stderr
1 error: found 2 equal signs, need exactly 3
2 --> $DIR/three-equals.rs:15:5
3 |
4 LL | three_equals!(==);
5 | ^^^^^^^^^^^^^^^^^^
6 |
7 = help: input must be: `===`
8
9 error: expected EOF, found `=`.
10 --> $DIR/three-equals.rs:18:21
11 |
12 LL | three_equals!(=====);
13 | ^^
14 |
15 note: last good input was here
16 --> $DIR/three-equals.rs:18:21
17 |
18 LL | three_equals!(=====);
19 | ^^
20 = help: input must be: `===`
21
22 error: expected `=`, found `abc`.
23 --> $DIR/three-equals.rs:21:19
24 |
25 LL | three_equals!(abc);
26 | ^^^
27
28 error: expected `=`, found `!`.
29 --> $DIR/three-equals.rs:24:19
30 |
31 LL | three_equals!(!!);
32 | ^
33
34 error: expected EOF, found `a`.
35 --> $DIR/three-equals.rs:27:22
36 |
37 LL | three_equals!(===a);
38 | ^
39 |
40 note: last good input was here
41 --> $DIR/three-equals.rs:27:21
42 |
43 LL | three_equals!(===a);
44 | ^
45 = help: input must be: `===`
46
47 error: aborting due to 5 previous errors
48