@@ -28,7 +28,7 @@ For instance, a custom implementation of `Box` might write `Drop` like this:
28
28
``` rust
29
29
#![feature(ptr_internals, allocator_api)]
30
30
31
- use std :: alloc :: {Alloc , Global , GlobalAlloc , Layout };
31
+ use std :: alloc :: {AllocRef , Global , GlobalAlloc , Layout };
32
32
use std :: mem;
33
33
use std :: ptr :: {drop_in_place, NonNull , Unique };
34
34
@@ -55,7 +55,7 @@ However this wouldn't work:
55
55
``` rust
56
56
#![feature(allocator_api, ptr_internals)]
57
57
58
- use std :: alloc :: {Alloc , Global , GlobalAlloc , Layout };
58
+ use std :: alloc :: {AllocRef , Global , GlobalAlloc , Layout };
59
59
use std :: ptr :: {drop_in_place, Unique , NonNull };
60
60
use std :: mem;
61
61
@@ -128,7 +128,7 @@ of Self during `drop` is to use an Option:
128
128
``` rust
129
129
#![feature(allocator_api, ptr_internals)]
130
130
131
- use std :: alloc :: {Alloc , GlobalAlloc , Global , Layout };
131
+ use std :: alloc :: {AllocRef , GlobalAlloc , Global , Layout };
132
132
use std :: ptr :: {drop_in_place, Unique , NonNull };
133
133
use std :: mem;
134
134
0 commit comments