blob: 9dffe5640809af8f6c6c0ec6175e7e0297673494 [file] [log] [blame]
//@ check-pass
#![allow(dead_code)]
pub trait Foo : Send { }
pub struct MyFoo {
children: Vec<Box<dyn Foo>>,
}
impl Foo for MyFoo { }
pub fn main() { }