]> git.proxmox.com Git - rustc.git/blame - src/test/ui/negative.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / negative.rs
CommitLineData
416331ca
XL
1// run-pass
2
223e47cc 3pub fn main() {
85aaf69f 4 match -5 {
223e47cc 5 -5 => {}
1a4d82fc 6 _ => { panic!() }
223e47cc
LB
7 }
8}