2019-12-03 11:47:44 -06:00
|
|
|
error: expected one of `.`, `;`, `?`, or an operator, found keyword `let`
|
|
|
|
--> $DIR/missing-semicolon.rs:3:12
|
|
|
|
|
|
|
|
|
LL | $( let x = $e1 )*;
|
|
|
|
| ^^^ expected one of `.`, `;`, `?`, or an operator
|
|
|
|
...
|
|
|
|
LL | fn main() { m!(0, 0; 0, 0); }
|
|
|
|
| --------------- in this macro invocation
|
|
|
|
|
|
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
|
|
|
|
|