Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
ui
/
pattern
/
suggest-adding-appropriate-missing-pattern-excluding-comments.rs
blob: 7e4b60f8ff28d5abf520b8041059d733104f0575 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn
main
()
{
match
Some
(
1
)
{
//~ ERROR non-exhaustive patterns: `None` not covered
Some
(
1
)
=>
{}
// hello
Some
(
_
)
=>
{}
}
}