Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
#![allow(dead_code)]
pub trait Foo : Send { }
pub struct MyFoo {
children: Vec<Box<dyn Foo>>,
}
impl Foo for MyFoo { }
pub fn main() { }