rust/tests/ui/traits/const-traits/const-drop-fail-2.rs

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

46 lines
908 B
Rust
Raw Normal View History

2023-04-16 11:12:37 +00:00
//@ known-bug: #110395
2023-08-06 13:20:55 +00:00
#![feature(const_trait_impl)]
// #![cfg_attr(precise, feature(const_precise_live_drops))]
use std::marker::{Destruct, PhantomData};
struct NonTrivialDrop;
impl Drop for NonTrivialDrop {
fn drop(&mut self) {
println!("Non trivial drop");
}
}
#[const_trait]
trait A { fn a() { } }
impl A for NonTrivialDrop {}
2023-08-06 13:20:55 +00:00
const fn check<T: ~const Destruct>(_: T) {}
/* FIXME(const_trait_impl)
struct ConstDropImplWithBounds<T: ~const A>(PhantomData<T>);
impl<T: ~const A> const Drop for ConstDropImplWithBounds<T> {
fn drop(&mut self) {
T::a();
}
}
2023-03-28 08:40:37 +00:00
const _: () = check::<ConstDropImplWithBounds<NonTrivialDrop>>(
ConstDropImplWithBounds(PhantomData)
);
2023-08-06 13:20:55 +00:00
*/
struct ConstDropImplWithNonConstBounds<T: A>(PhantomData<T>);
impl<T: ~const A> const Drop for ConstDropImplWithNonConstBounds<T> {
fn drop(&mut self) {
T::a();
}
}
fn main() {}