summary refs log tree commit diff
path: root/src/test/run-pass/negative.rs
blob: cc75d2ee86a70927d815633e880cb8846f12b092 (plain)
1
2
3
4
5
6
pub fn main() {
    match -5 {
      -5 => {}
      _ => { panic!() }
    }
}