Sign in
rust
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
extern
/
function-definition-in-extern-block-75283.rs
blob: e2b7358743ba1695299e15d7fca9748e8ff13ce1 [
file
] [
log
] [
blame
] [
edit
]
// https://github.com/rust-lang/rust/issues/75283
extern
"C"
{
fn
lol
()
{
//~ ERROR incorrect function inside `extern` block
println
!(
""
);
}
}
fn
main
()
{}