File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
branches/snap-stage3/src/test/run-pass 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
2
refs/heads/master: 242ed0b7c0f6a21096f2cc3e1ad1bdb176d02545
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: e2cc8b1436ffb0ca627708e886caa8fa292fb1e8
4
+ refs/heads/snap-stage3: b68ca84ef162943286c315126b52e1a6c3f49b3a
5
5
refs/heads/try: 961e0358e1a5c0faaef606e31e9965742c1643bf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
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