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
|
|
|
|
|
2021-02-13 19:52:25 +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
|
|
|
|
|