mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +00:00
14 lines
161 B
Rust
14 lines
161 B
Rust
//@ run-pass
|
|
|
|
#![allow(improper_ctypes)]
|
|
#![allow(dead_code)]
|
|
// Issue #901
|
|
|
|
mod libc {
|
|
extern "C" {
|
|
pub fn printf(x: ());
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|