]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0117.rs
Rollup merge of #59056 - scottmcm:even-fewer-lifetimes, r=sfackler
[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 on structures
3 //~| implementing Drop requires a struct
4
5 fn main() {
6 }