auto merge of #14591 : klutzy/rust/issue-9205, r=thestinger

Fixes #9205.
This commit is contained in:
bors 2014-06-01 20:26:39 -07:00
commit 2be0c5b5f5
3 changed files with 0 additions and 6 deletions

View File

@ -11,8 +11,6 @@
// Test a foreign function that accepts and returns a struct
// by value.
// ignore-win32 #9205
#[deriving(PartialEq, Show)]
struct TwoU64s {
one: u64, two: u64

View File

@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-win32 #9205
struct TwoU64s {
one: u64, two: u64
}

View File

@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-win32 #9205
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
pub struct Floats { a: f64, b: u8, c: f64 }