summaryrefslogtreecommitdiffstats
path: root/tests/ui/exclusive-drop-and-copy.rs
blob: 7a251671ee996e588bcf6e0d34af3a37a3746823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// issue #20126

#[derive(Copy, Clone)] //~ ERROR the trait `Copy` may not be implemented
struct Foo;

impl Drop for Foo {
    fn drop(&mut self) {}
}

#[derive(Copy, Clone)] //~ ERROR the trait `Copy` may not be implemented
struct Bar<T>(::std::marker::PhantomData<T>);

impl<T> Drop for Bar<T> {
    fn drop(&mut self) {}
}

fn main() {}