Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-fn-ret.rs
blob: a819dc4a5ab638b358ca8d62627817bb605331ef [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
f
()
->
Box
<
isize
>
{
Box
::
new
(
100
)
}
pub
fn
main
()
{
assert_eq
!(
f
(),
Box
::
new
(
100
));
}