rust/tests/ui/numeric/numeric-fields.rs

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

11 lines
223 B
Rust
Raw Normal View History

struct S(u8, u16);
fn main() {
2016-09-16 04:10:32 +00:00
let s = S{0b1: 10, 0: 11};
//~^ ERROR struct `S` has no field named `0b1`
match s {
2016-09-16 04:10:32 +00:00
S{0: a, 0x1: b, ..} => {}
//~^ ERROR does not have a field named `0x1`
}
}