Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
ui
/
dropck
/
negative.rs
blob: ae63632b55efd6caf225d42eb36396ab7a250e6b [
file
]
#![
feature
(
negative_impls
)]
struct
NonDrop
;
impl
!
Drop
for
NonDrop
{}
//~^ ERROR negative `Drop` impls are not supported
fn
main
()
{}