Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// missing and missing2 exist to make sure that the error only happens on a `main` declaration
extern "C" {
fn missing();
fn main();
//~^ ERROR the `main` function cannot be declared in an `extern` block
fn missing2();
}