Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
coercion
/
any-trait-object-debug-12744.rs
blob: 4d981c077ee25f391a67631113697afc46822a2f [
file
] [
log
] [
blame
]
//! Regression test for https://github.com/rust-lang/rust/issues/12744
//@ run-pass
fn
main
()
{
fn
test
()
->
Box
<
dyn std
::
any
::
Any
+
'
static
>
{
Box
::
new
(
1
)
}
println
!(
"{:?}"
,
test
())
}