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

8 lines
119 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
fn main() {
alt rec(x=1, y=2) {
{x, q} {}
}
}