rust/tests/ui/error-codes/E0184.rs

10 lines
113 B
Rust

#[derive(Copy)]
struct Foo; //~ ERROR E0184
impl Drop for Foo {
fn drop(&mut self) {
}
}
fn main() {
}