Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
foreign
/
issue-74120-lowering-of-ffi-block-bodies.rs
blob: 7f1625c9265aea06dd4856d81b456c676dd6be68 [
file
] [
log
] [
blame
] [
edit
]
// Previously this ICE'd because `fn g()` would be lowered, but the block associated with `fn f()`
// wasn't.
//@ compile-flags: --crate-type=lib
extern
"C"
{
fn
f
()
{
//~^ incorrect function inside `extern` block
fn
g
()
{}
}
}