Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-18988.rs
blob: 9dffe5640809af8f6c6c0ec6175e7e0297673494 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
pub
trait
Foo
:
Send
{
}
pub
struct
MyFoo
{
children
:
Vec
<
Box
<
dyn
Foo
>>,
}
impl
Foo
for
MyFoo
{
}
pub
fn
main
()
{
}