mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 19:02:52 +00:00
15 lines
210 B
Rust
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);
|
|
}
|