summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0117.rs
blob: 22b48657385c63d3244620ec3ccfd1e505e32373 (plain)
1
2
3
4
impl Drop for u32 {} //~ ERROR E0117
//~| ERROR the `Drop` trait may only be implemented for structs, enums, and unions

fn main() {}