File tree 2 files changed +11
-8
lines changed
src/test/ui/manually_drop_attr
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,17 @@ impl<'a> Drop for ManuallyDropped<'a> {
30
30
31
31
#[ manually_drop]
32
32
enum ManuallyDroppedEnum < ' a > {
33
- A ( DropCounter < ' a > , DropCounter < ' a > ) ,
33
+ _A,
34
+ B ( DropCounter < ' a > , DropCounter < ' a > ) ,
34
35
}
35
36
36
37
impl < ' a > Drop for ManuallyDroppedEnum < ' a > {
37
38
fn drop ( & mut self ) {
38
39
// just do a LITTLE dropping.
39
- let ManuallyDroppedEnum :: A ( a, _) = self ;
40
- unsafe {
41
- core:: ptr:: drop_in_place ( a) ;
40
+ if let ManuallyDroppedEnum :: B ( a, _) = self {
41
+ unsafe {
42
+ core:: ptr:: drop_in_place ( a) ;
43
+ }
42
44
}
43
45
}
44
46
}
@@ -56,7 +58,7 @@ fn test_destruction() {
56
58
assert_eq ! ( counter. get( ) , 1 ) ;
57
59
assert ! ( core:: mem:: needs_drop:: <ManuallyDropped >( ) ) ;
58
60
59
- core:: mem:: drop ( ManuallyDroppedEnum :: A ( DropCounter ( & counter) , DropCounter ( & counter) ) ) ;
61
+ core:: mem:: drop ( ManuallyDroppedEnum :: B ( DropCounter ( & counter) , DropCounter ( & counter) ) ) ;
60
62
assert_eq ! ( counter. get( ) , 2 ) ;
61
63
assert ! ( core:: mem:: needs_drop:: <ManuallyDroppedEnum >( ) ) ;
62
64
Original file line number Diff line number Diff line change @@ -22,10 +22,11 @@ struct ManuallyDropped<'a> {
22
22
23
23
#[ manually_drop]
24
24
enum ManuallyDroppedEnum < ' a > {
25
- A ( DropCounter < ' a > , DropCounter < ' a > ) ,
25
+ _A,
26
+ B ( DropCounter < ' a > , DropCounter < ' a > ) ,
26
27
}
27
28
28
- /// Dropping a `#[manually_drop]` struct does not implicitly drop its fields.
29
+ /// Dropping a `#[manually_drop]` type does not implicitly drop its fields.
29
30
fn test_destruction ( ) {
30
31
let counter = Cell :: new ( 0 ) ;
31
32
core:: mem:: drop ( ManuallyDropped {
@@ -35,7 +36,7 @@ fn test_destruction() {
35
36
assert_eq ! ( counter. get( ) , 0 ) ;
36
37
assert ! ( !core:: mem:: needs_drop:: <ManuallyDropped >( ) ) ;
37
38
38
- core:: mem:: drop ( ManuallyDroppedEnum :: A ( DropCounter ( & counter) , DropCounter ( & counter) ) ) ;
39
+ core:: mem:: drop ( ManuallyDroppedEnum :: B ( DropCounter ( & counter) , DropCounter ( & counter) ) ) ;
39
40
assert_eq ! ( counter. get( ) , 0 ) ;
40
41
assert ! ( !core:: mem:: needs_drop:: <ManuallyDroppedEnum >( ) ) ;
41
42
}
You can’t perform that action at this time.
0 commit comments