rust/tests/ui/consts/drop_zst.rs

18 lines
209 B
Rust
Raw Normal View History

//@ check-fail
2021-12-01 12:04:21 -06:00
#![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() {}