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