aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index a505f5b04b..a5e39ad071 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -80,12 +80,11 @@ const StructWithNoFields = struct {
const StructFoo = struct {
a: i32,
b: bool,
- c: f32,
+ c: u64,
};
test "structs" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
var foo: StructFoo = undefined;