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