os-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 13:13:37 +02:00
fn main() {
let r: f32 = 1.0;
match r {
2016-09-01 22:35:25 -04:00
[a, b] => {
//~^ ERROR E0529
2016-08-30 13:13:37 +02:00
}
}
}