mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
10 lines
138 B
Rust
10 lines
138 B
Rust
trait MyTrait { fn foo(&self) {} }
|
|
|
|
impl Drop for dyn MyTrait {
|
|
//~^ ERROR E0120
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
fn main() {}
|