rust/tests/run-pass/ice-1588.rs
Oliver Schneider 26270c7451 Fix ice
2017-03-03 14:46:33 +01:00

13 lines
169 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![allow(clippy)]
fn main() {
match 1 {
1 => {}
2 => {
[0; 1];
}
_ => {}
}
}