mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
315 B
Rust
15 lines
315 B
Rust
// 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
|
|
}
|
|
}
|