rust/tests/ui/dyn-star/drop.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
365 B
Rust
Raw Normal View History

//@ run-pass
//@ check-run-results
2022-08-29 14:02:03 -05:00
#![feature(dyn_star)]
2022-08-30 14:44:00 -05:00
#![allow(incomplete_features)]
use std::fmt::Debug;
#[derive(Debug)]
struct Foo(#[allow(dead_code)] usize);
impl Drop for Foo {
fn drop(&mut self) {
println!("destructor called");
}
}
fn make_dyn_star(i: Foo) {
2022-09-14 18:20:03 -05:00
let _dyn_i: dyn* Debug = i;
}
fn main() {
make_dyn_star(Foo(42));
}