rust/src/test/ui/proc-macro/three-equals.stderr

49 lines
1.2 KiB
Plaintext
Raw Normal View History

error: found 2 equal signs, need exactly 3
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:15:5
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(==); //~ ERROR found 2 equal signs, need exactly 3
| ^^^^^^^^^^^^^^^^^^
|
= help: input must be: `===`
error: expected EOF, found `=`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:18:21
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(=====); //~ ERROR expected EOF
| ^^
|
note: last good input was here
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:18:21
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(=====); //~ ERROR expected EOF
| ^^
= help: input must be: `===`
error: expected `=`, found `abc`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:21:19
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(abc); //~ ERROR expected `=`
| ^^^
error: expected `=`, found `!`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:24:19
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(!!); //~ ERROR expected `=`
| ^
error: expected EOF, found `a`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:27:22
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(===a); //~ ERROR expected EOF
| ^
|
note: last good input was here
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:27:21
|
2018-02-22 18:42:32 -06:00
LL | three_equals!(===a); //~ ERROR expected EOF
| ^
= help: input must be: `===`
error: aborting due to 5 previous errors