rust/tests/ui/box/unit/unique-pinned-nocopy.rs

15 lines
210 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 the method
println!("{:?}", i);
}