Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
extern
/
issue-16250.rs
blob: 436e2a6cee35509a17847eddfd480d50488bbeac [
file
] [
log
] [
blame
] [
edit
]
#![
deny
(
warnings
)]
pub
struct
Foo
;
extern
"C"
{
pub
fn
foo
(
x
:
(
Foo
));
//~ ERROR `extern` block uses type `Foo`
}
fn
main
()
{}