rust/tests/ui/error-codes/E0529.rs

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

9 lines
111 B
Rust
Raw Normal View History

2016-08-30 06:13:37 -05:00
fn main() {
let r: f32 = 1.0;
match r {
2016-09-01 21:35:25 -05:00
[a, b] => {
//~^ ERROR E0529
2016-08-30 06:13:37 -05:00
}
}
}