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