]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/three-equals.stderr
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.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    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
9
10 error: expected EOF, found `=`.
11   --> $DIR/three-equals.rs:18:21
12    |
13 LL |     three_equals!(=====);
14    |                     ^^
15    |
16 note: last good input was here
17   --> $DIR/three-equals.rs:18:21
18    |
19 LL |     three_equals!(=====);
20    |                     ^^
21    = help: input must be: `===`
22
23 error: expected `=`, found `abc`.
24   --> $DIR/three-equals.rs:21:19
25    |
26 LL |     three_equals!(abc);
27    |                   ^^^
28
29 error: expected `=`, found `!`.
30   --> $DIR/three-equals.rs:24:19
31    |
32 LL |     three_equals!(!!);
33    |                   ^
34
35 error: expected EOF, found `a`.
36   --> $DIR/three-equals.rs:27:22
37    |
38 LL |     three_equals!(===a);
39    |                      ^
40    |
41 note: last good input was here
42   --> $DIR/three-equals.rs:27:21
43    |
44 LL |     three_equals!(===a);
45    |                     ^
46    = help: input must be: `===`
47
48 error: aborting due to 5 previous errors
49