rust/tests/ui/dropck/negative.rs

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

8 lines
136 B
Rust
Raw Normal View History

#![feature(negative_impls)]
struct NonDrop;
impl !Drop for NonDrop {}
//~^ ERROR negative `Drop` impls are not supported
fn main() {}