rust/src/test/ui/unique-pinned-nocopy.rs
2018-12-25 21:08:33 -07:00

15 lines
229 B
Rust

#[derive(Debug)]
struct R {
b: bool,
}
impl Drop for R {
fn drop(&mut self) {}
}
fn main() {
let i = Box::new(R { b: true });
let _j = i.clone(); //~ ERROR no method named `clone` found
println!("{:?}", i);
}