Sign in
fuchsia
/
third_party
/
rust
/
4360fd7f342943b3d25a3eb7064fd3ef7599274e
/
.
/
tests
/
ui
/
issues
/
issue-12744.rs
blob: eaf92d413d57e672ffd0338af45ba15987b32514 [
file
]
//@ run-pass
fn
main
()
{
fn
test
()
->
Box
<
dyn std
::
any
::
Any
+
'
static
>
{
Box
::
new
(
1
)
}
println
!(
"{:?}"
,
test
())
}