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