Add test to make sure we run custom destructors

This commit is contained in:
Eric Holk 2022-08-17 16:58:49 -07:00
parent 48e7f24804
commit ef7062dad6
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,22 @@
// run-pass
// check-run-results
#![feature(async_fn_in_traits)]
use std::fmt::Debug;
#[derive(Debug)]
struct Foo(usize);
impl Drop for Foo {
fn drop(&mut self) {
println!("destructor called");
}
}
fn make_dyn_star(i: Foo) {
let _dyn_i: dyn* Debug = i as dyn* Debug;
}
fn main() {
make_dyn_star(Foo(42));
}

View file

@ -0,0 +1 @@
destructor called