]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0117.rs
Merge commit '3a31c6d8272c14388a34622193baf553636fe470' into sync_cg_clif-2021-07-07
[rust.git] / src / test / ui / error-codes / E0117.rs
1 impl Drop for u32 {} //~ ERROR E0117
2 //~| ERROR the `Drop` trait may only be implemented for structs, enums, and unions
3
4 fn main() {
5 }