File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: d217174987466010cd8810179c5fdb7ae4a126d0
2
+ refs/heads/master: be062db808f34983d6039d0a12c0110cba2b730e
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
5
5
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589
Original file line number Diff line number Diff line change @@ -639,7 +639,6 @@ mod test {
639
639
use core:: io:: BytesWriter ;
640
640
641
641
#[ test]
642
- #[ ignore( reason = "ebml failure" ) ]
643
642
fn test_serializing_memory_stream ( ) {
644
643
let writer = BytesWriter ( ) ;
645
644
let chan = serial:: writer_chan ( writer) ;
@@ -672,7 +671,6 @@ mod test {
672
671
}
673
672
674
673
#[ test]
675
- #[ ignore( reason = "ebml failure" ) ]
676
674
fn test_serializing_boxes( ) {
677
675
let ( port, chan) = serial:: pipe_stream ( ) ;
678
676
Original file line number Diff line number Diff line change 9
9
// option. This file may not be copied, modified, or distributed
10
10
// except according to those terms.
11
11
12
- // xfail-test
13
- type rec = { f : int } ;
14
- fn f ( p : * rec ) -> int {
12
+ struct Rec {
13
+ f : int
14
+ }
15
+
16
+ fn f ( p : * Rec ) -> int {
15
17
16
18
// Test that * ptrs do not autoderef. There is a deeper reason for
17
19
// prohibiting this, beyond making unsafe things annoying (which doesn't
@@ -25,7 +27,7 @@ fn f(p: *rec) -> int {
25
27
// are prohibited by various checks, such as that the enum is
26
28
// instantiable and so forth).
27
29
28
- return p. f ; //~ ERROR attempted access of field `f` on type `*rec `
30
+ return p. f ; //~ ERROR attempted access of field `f` on type `*Rec `
29
31
}
30
32
31
33
fn main ( ) {
You can’t perform that action at this time.
0 commit comments