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