]> git.lizzy.rs Git - rust.git/blob - tests/run-pass/ice-1588.rs
Move all our tests back to ui tests
[rust.git] / tests / run-pass / ice-1588.rs
1 #![feature(plugin)]
2 #![plugin(clippy)]
3 #![allow(clippy)]
4
5 fn main() {
6     match 1 {
7         1 => {}
8         2 => {
9             [0; 1];
10         }
11         _ => {}
12     }
13 }