blob: ddaaee436ae23b43517944cef4f19b2350d1c46f [file] [log] [blame]
// ignore-wasm32-bare no libc to test ffi with
#![feature(rustc_private)]
extern crate libc;
fn main() {
let x : *const Vec<isize> = &vec![1,2,3];
let y : *const libc::c_void = x as *const libc::c_void;
unsafe {
let _z = (*y).clone();
//~^ ERROR no method named `clone` found
}
}