Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
uninhabited
/
uninhabited-enum-cast.rs
blob: 5199721be0e036637a8a70f687424fb62117a713 [
file
] [
log
] [
blame
]
//@ check-pass
enum
E
{}
fn
f
(
e
:
E
)
{
println
!(
"{}"
,
(
e
as
isize
).
to_string
());
}
fn
main
()
{}