summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0117.rs
blob: dbbac514801f7ba53dead6208c26757679c1c758 (plain)
1
2
3
4
5
impl Drop for u32 {} //~ ERROR E0117
//~| ERROR the `Drop` trait may only be implemented for structs, enums, and unions

fn main() {
}