rust/tests/ui/parser/missing-semicolon.stderr

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

14 lines
484 B
Plaintext
Raw Normal View History

2021-08-02 00:55:48 +00:00
error: expected one of `.`, `;`, `?`, `else`, or an operator, found keyword `let`
2019-12-03 17:47:44 +00:00
--> $DIR/missing-semicolon.rs:3:12
|
LL | $( let x = $e1 )*;
2021-08-02 00:55:48 +00:00
| ^^^ expected one of `.`, `;`, `?`, `else`, or an operator
2019-12-03 17:47:44 +00:00
...
LL | fn main() { m!(0, 0; 0, 0); }
2021-10-14 18:28:28 +00:00
| -------------- in this macro invocation
2019-12-03 17:47:44 +00:00
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
2019-12-03 17:47:44 +00:00
error: aborting due to previous error