Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
binop
/
binary-minus-without-space.rs
blob: c80c0c88fcbc43910c851134735ad81ab05b53c4 [
file
]
//@ run-pass
// Check that issue #954 stays fixed
pub
fn
main
()
{
match
-
1
{
-
1
=>
{},
_
=>
panic
!(
"wat"
)
}
assert_eq
!(
1
-
1
,
0
);
}