rust/src/test/ui/binary-minus-without-space.rs
2019-07-27 18:56:16 +03:00

9 lines
139 B
Rust

// run-pass
// Check that issue #954 stays fixed
pub fn main() {
match -1 { -1 => {}, _ => panic!("wat") }
assert_eq!(1-1, 0);
}