1
Fork 0
rust/src/test/ui/error-codes/E0117.rs

7 lines
157 B
Rust
Raw Normal View History

2016-05-27 22:06:24 +02:00
impl Drop for u32 {} //~ ERROR E0117
//~| ERROR the Drop trait may only be implemented on structures
//~| implementing Drop requires a struct
2016-05-27 22:06:24 +02:00
fn main() {
}