aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-02-24 00:00:15 +0100
committerGitHub <noreply@github.com>2022-02-24 00:00:15 +0100
commit9d098318e2b16a35803d84b70b48c04111f2dddf (patch)
treedf9d5d2e3aa86c46bcc1ae4f577e35c92babb9e6 /test/behavior/struct.zig
parent136a43934bc08dc3aee85f1182904b97456601d3 (diff)
parentf91fe9afb92dda2b7b1ae37147ce7af40101d5ea (diff)
downloadzig-9d098318e2b16a35803d84b70b48c04111f2dddf.tar.gz
zig-9d098318e2b16a35803d84b70b48c04111f2dddf.zip
Merge pull request #10977 from joachimschmidt557/stage2-aarch64
stage2 AArch64: more support for PIE targets (Mach-O)
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index 99dec11bf9..5f46894fda 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -66,7 +66,6 @@ const SmallStruct = struct {
};
test "lower unnamed constants" {
- if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest;
var foo = SmallStruct{ .a = 1, .b = 255 };
try expect(foo.first() == 1);
try expect(foo.second() == 255);