rust/tests/ui/proc-macro/three-equals.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
Plaintext
Raw Normal View History

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