rust/tests/ui/dropck/const_drop_is_valid.rs

12 lines
299 B
Rust
Raw Normal View History

2024-07-01 14:39:48 -05:00
#![feature(effects)]
//~^ WARN: the feature `effects` is incomplete
struct A();
impl const Drop for A {}
//~^ ERROR: const trait impls are experimental
//~| const `impl` for trait `Drop` which is not marked with `#[const_trait]`
//~| not all trait items implemented, missing: `drop`
fn main() {}