Sign in
android
/
toolchain
/
rustc
/
59fbe18bc79ed87d0c5f02705e7cf19e402e1f2b
/
.
/
src
/
test
/
ui
/
nil-decl-in-foreign.rs
blob: f3be948781be326089cc7efed7d2d18ba6d6d7b9 [
file
]
// run-pass
#![
allow
(
improper_ctypes
)]
#![
allow
(
dead_code
)]
// Issue #901
// pretty-expanded FIXME #23616
mod
libc
{
extern
"C"
{
pub
fn
printf
(
x
:
());
}
}
pub
fn
main
()
{}