about summary refs log tree commit diff
path: root/tests/ui/drop/missing-drop-method.stderr
blob: 1128f33e627b345c5803408e11d4ed1540b71717 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0046]: not all trait items implemented, missing: `drop`
  --> $DIR/missing-drop-method.rs:2:1
   |
LL | impl Drop for DropNoMethod {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `drop` in implementation
   |
   = help: implement the missing item: `fn drop(&mut self) { todo!() }`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0046`.