blob: f7c70d3978b7f24922e45e7ef2f0bee815bafcce [file] [log] [blame]
// check-fail
#![feature(const_precise_live_drops)]
struct S;
impl Drop for S {
fn drop(&mut self) {
println!("Hello!");
}
}
const fn foo() {
let s = S; //~ destructor
}
fn main() {}