blob: dbbbe4e3b7d8f1db49de3ab944acb58365f5ab56 [file] [log] [blame]
Felix S. Klock II0909e0b2018-08-30 12:18:551// run-pass
Alex Crichton80ff0f72017-10-23 03:01:002// ignore-wasm32-bare no libc to test ffi with
3
Brian Anderson8c93a792015-03-22 20:13:154// pretty-expanded FIXME #23616
5
Alex Crichtonf94d6712014-05-09 17:34:516use std::mem::transmute;
Patrick Walton1e52eed2013-05-31 18:31:387
8mod a {
Mark Rousskov8a3edb12020-09-01 21:12:529 extern "C" {
Alex Crichton0dfc90a2014-06-25 19:47:3410 pub fn free(x: *const u8);
Patrick Walton1e52eed2013-05-31 18:31:3811 }
12}
13
Alex Crichton30862a62013-09-25 07:43:3714pub fn main() {
Patrick Walton1e52eed2013-05-31 18:31:3815 unsafe {
Niko Matsakis72eb2142015-02-18 10:42:0116 a::free(transmute(0_usize));
Patrick Walton1e52eed2013-05-31 18:31:3817 }
18}