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