Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use std::fmt::Debug;
fn main() {
let x: Option<impl Debug> = Some(44_u32);
//~^ `impl Trait` only allowed in function and inherent method return types
println!("{:?}", x);
}