]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0117.rs
Merge commit '370c397ec9169809e5ad270079712e0043514240' into sync_cg_clif-2022-03-20
[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 }