DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / binop / binary-minus-without-space.rs
12345678
// run-pass // Check that issue #954 stays fixed pub fn main() { match -1 { -1 => {}, _ => panic!("wat") } assert_eq!(1-1, 0); }