Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// compile-flags: --cfg foo
#[cfg(all(foo, bar))] // foo AND bar
fn foo() {}
fn main() {
foo(); //~ ERROR cannot find function `foo` in this scope
}