Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
suggestions
/
suggest-semicolon-for-fn-in-extern-block.rs
blob: 91971cba3e863ad1c5c7a03eaa9830a469af5696 [
file
]
// run-rustfix
#[
allow
(
dead_code
)]
extern
"C"
{
fn
foo
()
//~ERROR expected `;`
}
fn
main
()
{}