rust/tests/ui/drop/nonsense-drop-impl-issue-139278.rs
2025-04-04 05:18:48 +02:00

11 lines
187 B
Rust

//@ check-fail
struct Foo;
impl Drop for Foo { //~ ERROR: not all trait items implemented
const SPLOK: u32 = 0; //~ ERROR: not a member of trait
}
const X: Foo = Foo;
fn main() {}