Sign in
rust
/
rust
/
b2dfd76fffae30c81ebe6e73b3a1d0a3bd29d330
/
.
/
tests
/
ui
/
drop
/
missing-drop-method.rs
blob: 5828fd6c06381a7d89d16ad358f30ea00f14946c [
file
] [
log
] [
blame
]
struct
DropNoMethod
;
impl
Drop
for
DropNoMethod
{}
//~ ERROR not all trait items implemented, missing: `drop`
fn
main
()
{}