trait MyTrait { fn foo() {} }
impl Drop for MyTrait {
//~^ ERROR E0120
fn drop(&mut self) {}
}
fn main() {