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