blob: 76b36a12c200c73aad027f9d3b0b2458a566de80 [file] [log] [blame]
#![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() {
}