12 lines
156 B
Rust
12 lines
156 B
Rust
// compile-pass
|
|
#![allow(dead_code)]
|
|
pub trait Foo : Send { }
|
|
|
|
pub struct MyFoo {
|
|
children: Vec<Box<Foo>>,
|
|
}
|
|
|
|
impl Foo for MyFoo { }
|
|
|
|
pub fn main() { }
|