]> git.proxmox.com Git - rustc.git/blob - src/test/ui/missing/missing-semicolon-warning.stderr
New upstream version 1.42.0+dfsg0+pve1
[rustc.git] / src / test / ui / missing / missing-semicolon-warning.stderr
1 warning: expected `;`, found keyword `let`
2 --> $DIR/missing-semicolon-warning.rs:6:12
3 |
4 LL | $( let x = $e1 )*;
5 | ^^^
6 ...
7 LL | fn main() { m!(0, 0; 0, 0); }
8 | --------------- in this macro invocation
9 |
10 = note: this was erroneously allowed and will become a hard error in a future release
11
12 warning: expected `;`, found `println`
13 --> $DIR/missing-semicolon-warning.rs:7:12
14 |
15 LL | $( println!("{}", $e2) )*;
16 | ^^^^^^^
17 ...
18 LL | fn main() { m!(0, 0; 0, 0); }
19 | --------------- in this macro invocation
20 |
21 = note: this was erroneously allowed and will become a hard error in a future release
22