Skip to content

Commit 71a2d74

Browse files
committed
---
yaml --- r: 60319 b: refs/heads/master c: be062db h: refs/heads/master i: 60317: 5b6395f 60315: 15658e5 60311: 0136aac 60303: e619e89 60287: fd0036d v: v3
1 parent 4387a69 commit 71a2d74

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: d217174987466010cd8810179c5fdb7ae4a126d0
2+
refs/heads/master: be062db808f34983d6039d0a12c0110cba2b730e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589

trunk/src/libstd/flatpipes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,6 @@ mod test {
639639
use core::io::BytesWriter;
640640

641641
#[test]
642-
#[ignore(reason = "ebml failure")]
643642
fn test_serializing_memory_stream() {
644643
let writer = BytesWriter();
645644
let chan = serial::writer_chan(writer);
@@ -672,7 +671,6 @@ mod test {
672671
}
673672

674673
#[test]
675-
#[ignore(reason = "ebml failure")]
676674
fn test_serializing_boxes() {
677675
let (port, chan) = serial::pipe_stream();
678676

trunk/src/test/compile-fail/unsafe-fn-autoderef.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
// option. This file may not be copied, modified, or distributed
1010
// except according to those terms.
1111

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 {
1517

1618
// Test that * ptrs do not autoderef. There is a deeper reason for
1719
// prohibiting this, beyond making unsafe things annoying (which doesn't
@@ -25,7 +27,7 @@ fn f(p: *rec) -> int {
2527
// are prohibited by various checks, such as that the enum is
2628
// instantiable and so forth).
2729

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`
2931
}
3032

3133
fn main() {

0 commit comments

Comments
 (0)