Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait T {
extern "Rust" unsafe fn foo();
//~^ ERROR expected `fn`, found keyword `unsafe`
//~| NOTE expected `fn`
//~| HELP `unsafe` must come before `extern "Rust"`
//~| SUGGESTION unsafe extern "Rust"
//~| NOTE keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`
}
fn main() {}