mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
208 B
Rust
18 lines
208 B
Rust
// 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() {}
|