]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0117.rs
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[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 }