Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
trait Tc {}
impl Tc for bool {}
fn main() {
let _: &[&dyn Tc] = &[&true];
}