blob: 4c30450c70455fc45b1c87be9ca072d73c19b538 [file] [log] [blame]
#[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);
}