summaryrefslogtreecommitdiffstats
path: root/tests/ui/box/unit/unique-pinned-nocopy.rs
blob: 8edaeef51e06190fc91d8e73fd8ceee05449be09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[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);
}