Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Check warning for unexpected cfg
//
// check-pass
// compile-flags: --check-cfg=cfg() -Z unstable-options
#[cfg(unknown_key = "value")]
//~^ WARNING unexpected `cfg` condition name
pub fn f() {}
fn main() {}