rust/tests/ui/parser/pat-lt-bracket-7.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
235 B
Rust
Raw Normal View History

2015-04-02 21:56:27 -05:00
fn main() {
2019-07-23 19:30:37 -05:00
struct Thing(u8, [u8; 0]);
let foo = core::iter::empty();
for Thing(x[]) in foo {}
//~^ ERROR: expected one of `)`, `,`, `@`, or `|`, found `[`
2015-04-02 21:56:27 -05:00
}
2019-07-23 19:30:37 -05:00
const RECOVERY_WITNESS: () = 0; //~ ERROR mismatched types