]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/missing-semicolon.stderr
Auto merge of #69257 - RalfJung:layout-visitor, r=eddyb
[rust.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