rust/src/test/run-pass/binary-minus-without-space.rs
2012-08-06 15:36:30 -07:00

7 lines
105 B
Rust

// Check that issue #954 stays fixed
fn main() {
match check -1 { -1 => {} }
assert 1-1 == 0;
}