Sign in
rust
/
rust
/
7ce91c53c4c7fa80b60b49e030b0298d4e575d23
/
.
/
tests
/
ui
/
return
/
return-nil.rs
blob: c2591a77b30150b7689a1d10a2d230e1de5820fa [
file
]
//@ run-pass
fn
f
()
{
let
x
=
();
return
x
;
}
pub
fn
main
()
{
f
();
}