Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
expr
/
block-fn.rs
blob: 1d3689eb4f3d431ee605b8002640a0377ada72b9 [
file
]
//@ run-pass
fn
test_fn
()
{
fn
ten
()
->
isize
{
return
10
;
}
let
rs
=
ten
;
assert_eq
!(
rs
(),
10
);
}
pub
fn
main
()
{
test_fn
();
}