]> git.lizzy.rs Git - rust.git/blob - src/test/ui/negative.rs
Rollup merge of #72279 - RalfJung:raw-ref-macros, r=nikomatsakis
[rust.git] / src / test / ui / negative.rs
1 // run-pass
2
3 pub fn main() {
4     match -5 {
5       -5 => {}
6       _ => { panic!() }
7     }
8 }