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