]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/missing-semicolon.stderr
Rollup merge of #92024 - pcwalton:per-codegen-unit-names, r=davidtwco
[rust.git] / src / test / ui / parser / missing-semicolon.stderr
1 error: expected one of `.`, `;`, `?`, `else`, or an operator, found keyword `let`
2   --> $DIR/missing-semicolon.rs:3:12
3    |
4 LL |         $( let x = $e1 )*;
5    |            ^^^ expected one of `.`, `;`, `?`, `else`, or an operator
6 ...
7 LL | fn main() { m!(0, 0; 0, 0); }
8    |             -------------- in this macro invocation
9    |
10    = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error: aborting due to previous error
13