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

49 lines
1.2 KiB
Plaintext
Raw Normal View History

error: found 2 equal signs, need exactly 3
--> $DIR/three-equals.rs:25:5
|
2017-11-20 06:13:27 -06:00
25 | three_equals!(==); //~ ERROR found 2 equal signs, need exactly 3
| ^^^^^^^^^^^^^^^^^^
|
= help: input must be: `===`
error: expected EOF, found `=`.
--> $DIR/three-equals.rs:28:21
|
2017-11-20 06:13:27 -06:00
28 | three_equals!(=====); //~ ERROR expected EOF
| ^^
|
note: last good input was here
--> $DIR/three-equals.rs:28:21
|
2017-11-20 06:13:27 -06:00
28 | three_equals!(=====); //~ ERROR expected EOF
| ^^
= help: input must be: `===`
error: expected `=`, found `abc`.
--> $DIR/three-equals.rs:31:19
|
2017-11-20 06:13:27 -06:00
31 | three_equals!(abc); //~ ERROR expected `=`
| ^^^
error: expected `=`, found `!`.
--> $DIR/three-equals.rs:34:19
|
2017-11-20 06:13:27 -06:00
34 | three_equals!(!!); //~ ERROR expected `=`
| ^
error: expected EOF, found `a`.
--> $DIR/three-equals.rs:37:22
|
2017-11-20 06:13:27 -06:00
37 | three_equals!(===a); //~ ERROR expected EOF
| ^
|
note: last good input was here
--> $DIR/three-equals.rs:37:21
|
2017-11-20 06:13:27 -06:00
37 | three_equals!(===a); //~ ERROR expected EOF
| ^
= help: input must be: `===`
error: aborting due to 5 previous errors