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