We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Repro:
pub trait Foo : Send { } pub struct MyFoo { children: Vec<Box<Foo>>, } impl Foo for MyFoo { } pub fn main() { }
cc @nikomatsakis