Sign in
rust
/
rust
/
0883b8cc7926859cd296afde42c5b2d7aaae5ce5
/
.
/
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
()
{}