]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/missing-semicolon.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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