Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
postfix-match
/
pf-match-exhaustiveness.rs
blob: f4cac46f7cd64301286103a56b0264cb68d3583e [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
postfix_match
)]
fn
main
()
{
Some
(
1
).
match
{
//~ non-exhaustive patterns
None
=>
{},
}
}