Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
uninhabited
/
diverging-guard.rs
blob: 234d630e34505bc204094a1781b1df21abba8960 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
enum
Void
{}
fn
main
()
{
let
x
:
Void
;
match
x
{
_
if
{
loop
{}
}
=>
(),
}
}