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