summary refs log tree commit diff
path: root/src/test/ui/negative.rs
blob: 9601e9118aa50768af5e32833865c833ed8f7f9a (plain)
1
2
3
4
5
6
7
8
// run-pass

pub fn main() {
    match -5 {
      -5 => {}
      _ => { panic!() }
    }
}