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