blob: ab9634df65c8abd1fb1c8f232c1125dfe4e5e1de [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// compile-flags:-D improper-ctypes
// pretty-expanded FIXME #23616
#![allow(improper_ctypes)]
mod libc {
extern {
pub fn malloc(size: isize) -> *const u8;
}
}
pub fn main() {
}