Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
postfix-match
/
no-unused-parens.rs
blob: 46cac7a6107e58647219808be0c0ab950e218560 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
feature
(
postfix_match
)]
fn
main
()
{
(&
1
).
match
{
a
=>
a
};
(
1
+
2
).
match
{
b
=>
b
};
}