Skip to content

Commit 2be0c5b

Browse files
committed
auto merge of #14591 : klutzy/rust/issue-9205, r=thestinger
Fixes #9205.
2 parents 1527dab + 42e4464 commit 2be0c5b

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

src/test/run-pass/extern-pass-TwoU64s.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// Test a foreign function that accepts and returns a struct
1212
// by value.
1313

14-
// ignore-win32 #9205
15-
1614
#[deriving(PartialEq, Show)]
1715
struct TwoU64s {
1816
one: u64, two: u64

src/test/run-pass/extern-return-TwoU64s.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-win32 #9205
12-
1311
struct TwoU64s {
1412
one: u64, two: u64
1513
}

src/test/run-pass/struct-return.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-win32 #9205
12-
1311
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
1412
pub struct Floats { a: f64, b: u8, c: f64 }
1513

0 commit comments

Comments
 (0)