Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![deny(warnings)]
pub struct Foo;
extern "C" {
pub fn foo(x: (Foo)); //~ ERROR `extern` block uses type `Foo`
}
fn main() {}