File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
branches/tmp/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 @@ -34,7 +34,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: a3b13610c5b93d9ada072471a001a5613df6a960
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
- refs/heads/tmp: e2cc8b1436ffb0ca627708e886caa8fa292fb1e8
37
+ refs/heads/tmp: b68ca84ef162943286c315126b52e1a6c3f49b3a
38
38
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
39
39
refs/tags/homu-tmp: 123a754cb8356d0e78837dd4e58103ad801309ff
40
40
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412
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