summaryrefslogtreecommitdiffstats
path: root/tests/ui/dropck/negative.rs
blob: ae63632b55efd6caf225d42eb36396ab7a250e6b (plain)
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() {}