mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
189 B
Rust
13 lines
189 B
Rust
struct MyStruct;
|
|
|
|
impl Drop for MyStruct {
|
|
fn drop(&mut self) { }
|
|
}
|
|
|
|
impl Drop for MyStruct {
|
|
//~^ ERROR conflicting implementations of trait
|
|
fn drop(&mut self) { }
|
|
}
|
|
|
|
fn main() {}
|