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

49 lines
1.1 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
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(==);
| ^^^^^^^^^^^^^^^^^^ in this macro invocation
|
= help: input must be: `===`
error: expected EOF, found `=`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:18:21
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(=====);
| ^^
|
note: last good input was here
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:18:21
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(=====);
| ^^
= help: input must be: `===`
error: expected `=`, found `abc`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:21:19
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(abc);
| ^^^
error: expected `=`, found `!`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:24:19
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(!!);
| ^
error: expected EOF, found `a`.
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:27:22
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(===a);
| ^
|
note: last good input was here
2018-12-25 09:56:47 -06:00
--> $DIR/three-equals.rs:27:21
|
2019-03-09 06:03:44 -06:00
LL | three_equals!(===a);
| ^
= help: input must be: `===`
error: aborting due to 5 previous errors