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

11 lines
113 B
Rust
Raw Normal View History

2016-06-01 14:30:13 +00:00
#[derive(Copy)] //~ ERROR E0184
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
}
}
fn main() {
}