summary refs log tree commit diff
path: root/src/test/run-pass/binary-minus-without-space.rs
blob: cb31faacc3c480a90f9c852c60ec4422a15e0013 (plain)
1
2
3
4
5
6
// Check that issue #954 stays fixed

fn main() {
    alt -1 { -1 {} }
    assert 1-1 == 0;
}