Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![allow(warnings)]
trait MyTrait<'a> { }
impl MyTrait for u32 {
//~^ ERROR implicit elided lifetime not allowed here
}
fn main() {}