File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
branches/beta/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 @@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
32
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
- refs/heads/beta: e2cc8b1436ffb0ca627708e886caa8fa292fb1e8
34
+ refs/heads/beta: b68ca84ef162943286c315126b52e1a6c3f49b3a
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
37
refs/heads/tmp: be7f6ac7008f8ddf980ac07026b05bdd865f29cc
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