Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use std::ops::Add;
fn main() {
let i: i32 = 0;
let j: &impl Add = &i;
//~^ `impl Trait` only allowed in function and inherent method argument and return types
}