rust/src/test/compile-fail/bad-record-pat-2.rs

3 lines
108 B
Rust
Raw Normal View History

2011-07-11 07:13:20 -05:00
// error-pattern:did not expect a record with a field q
2011-07-27 07:19:39 -05:00
fn main() { alt {x: 1, y: 2} { {x: x, q: q} { } } }