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