]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/missing-semicolon.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / parser / missing-semicolon.stderr
1 error: expected one of `.`, `;`, `?`, or an operator, found keyword `let`
2 --> $DIR/missing-semicolon.rs:3:12
3 |
4 LL | $( let x = $e1 )*;
5 | ^^^ expected one of `.`, `;`, `?`, 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 a macro (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error: aborting due to previous error
13