11 lines
195 B
Rust
11 lines
195 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
#![allow(dead_code)]
|
|
pub trait Foo : Send { }
|
|
|
|
pub struct MyFoo {
|
|
children: Vec<Box<dyn Foo>>,
|
|
}
|
|
|
|
impl Foo for MyFoo { }
|
|
|
|
pub fn main() { }
|