Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
postfix-match
/
match-after-as.rs
blob: 7c648bfcf0353704fc77fd76f902189683546f37 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
postfix_match
)]
fn
main
()
{
1
as
i32
.
match
{};
//~^ ERROR cast cannot be followed by a postfix match
//~| ERROR non-exhaustive patterns
}