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