DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / drop / issue-17718-const-destructors.rs
12345678910
//@ check-pass #![allow(dead_code)] struct A; impl Drop for A { fn drop(&mut self) {} } const FOO: A = A; fn main() {}