summary refs log tree commit diff
path: root/src/test/compile-fail/bad-record-pat.rs
blob: 1b12d274ce8f4e798ab7b1ae940d68fa396af407 (plain)
1
2
3
// error-pattern:expected a record with 2 fields, found one with 1

fn main() { alt {x: 1, y: 2} { {x: x} { } } }