Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait MyTrait { fn foo() {} }
impl Drop for dyn MyTrait {
//~^ ERROR E0120
fn drop(&mut self) {}
}
fn main() {}