Sign in
fuchsia
/
third_party
/
rust
/
8ae423e5e8db47b8233ad657b8d84247f94de179
/
.
/
tests
/
ui
/
foreign
/
nil-decl-in-foreign.rs
blob: 6adf08246e74a104505175606b3a36efcc4ba38d [
file
]
//@ run-pass
#![
allow
(
improper_ctypes
)]
#![
allow
(
dead_code
)]
// Issue #901
mod
libc
{
extern
"C"
{
pub
fn
printf
(
x
:
());
}
}
pub
fn
main
()
{}