2017-08-28 02:56:43 -07:00
|
|
|
error: found 2 equal signs, need exactly 3
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:12:5
|
2019-08-20 23:35:03 +03:00
|
|
|
|
|
2020-02-10 17:37:12 +01:00
|
|
|
LL | three_equals!(==);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
|
|
|
= help: input must be: `===`
|
2019-12-16 15:56:47 +02:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
|
|
error: expected EOF, found `=`.
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:15:21
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(=====);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
note: last good input was here
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:15:21
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(=====);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^^
|
|
|
|
= help: input must be: `===`
|
|
|
|
|
|
|
|
error: expected `=`, found `abc`.
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:18:19
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(abc);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: expected `=`, found `!`.
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:21:19
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(!!);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected EOF, found `a`.
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:24:22
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(===a);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: last good input was here
|
2020-02-01 01:02:31 +03:00
|
|
|
--> $DIR/three-equals.rs:24:21
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(===a);
|
2017-08-28 02:56:43 -07:00
|
|
|
| ^
|
|
|
|
= help: input must be: `===`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|