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!(==);
|
2021-10-14 13:28:28 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
|
|
|
= help: input must be: `===`
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `three_equals` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
|
|
error: expected EOF, found `=`.
|
2022-10-03 13:57:47 +11:00
|
|
|
--> $DIR/three-equals.rs:15:22
|
2017-08-28 02:56:43 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | three_equals!(=====);
|
2022-10-03 13:57:47 +11:00
|
|
|
| ^
|
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!(=====);
|
2022-10-03 13:57:47 +11:00
|
|
|
| ^
|
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
|
|
|
|
|