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

fn main() {
    match -1 { -1 => {}, _ => fail ~"wat" }
    assert 1-1 == 0;
}