summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0117.rs
blob: 18dd809f3ff3ee97b93caa76b8b57c3be20f3b94 (plain)
1
2
3
4
5
6
impl Drop for u32 {} //~ ERROR E0117
//~| ERROR the Drop trait may only be implemented on structures
//~| implementing Drop requires a struct

fn main() {
}