2017-08-28 04:56:43 -05:00
|
|
|
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
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
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
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^^
|
|
|
|
= 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 `=`
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: expected `=`, found `!`.
|
|
|
|
--> $DIR/three-equals.rs:34:19
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
34 | three_equals!(!!); //~ ERROR expected `=`
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
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
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
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
|
2017-08-28 04:56:43 -05:00
|
|
|
| ^
|
|
|
|
= help: input must be: `===`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|