File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: e2cc8b1436ffb0ca627708e886caa8fa292fb1e8
2
+ refs/heads/master: b68ca84ef162943286c315126b52e1a6c3f49b3a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 552080181c58beef03493a110b4a38b20b6b5da5
5
5
refs/heads/try: 961e0358e1a5c0faaef606e31e9965742c1643bf
Original file line number Diff line number Diff line change 13
13
#![ allow( unknown_features) ]
14
14
#![ feature( box_syntax) ]
15
15
#![ feature( intrinsics) ]
16
- #![ feature( filling_drop) ] // needed to check for drop fill word.
16
+ // needed to check for drop fill word.
17
+ #![ feature( filling_drop) ]
17
18
18
19
use std:: mem:: { self , transmute} ;
19
20
@@ -31,6 +32,7 @@ pub fn main() {
31
32
let mut z: * const uint = transmute ( & x) ;
32
33
rusti:: move_val_init ( & mut y, x) ;
33
34
assert_eq ! ( * y, 1 ) ;
34
- assert_eq ! ( * z, mem:: POST_DROP_USIZE ) ; // `x` is nulled out, not directly visible
35
+ // `x` is nulled out, not directly visible
36
+ assert_eq ! ( * z, mem:: POST_DROP_USIZE ) ;
35
37
}
36
38
}
You can’t perform that action at this time.
0 commit comments