Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
8a3edb1d661ed5ce685bd5dcfa600b6e02897b86
/
.
/
src
/
test
/
ui
/
nil-decl-in-foreign.rs
blob: f3be948781be326089cc7efed7d2d18ba6d6d7b9 [
file
] [
log
] [
blame
]
// 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
()
{}