diff options
| author | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-02-08 12:56:50 +0100 |
|---|---|---|
| committer | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-02-08 21:02:50 +0100 |
| commit | 6b0c950cb873f5fe65c0029140b91dfd8a7b1adb (patch) | |
| tree | 290acd017849ae6dd1944f07cac267e055c59c08 /test/behavior/struct.zig | |
| parent | 37fea3e3ddc1f7d266d95789c3b1005291bcb96b (diff) | |
| download | zig-6b0c950cb873f5fe65c0029140b91dfd8a7b1adb.tar.gz zig-6b0c950cb873f5fe65c0029140b91dfd8a7b1adb.zip | |
stage2 ARM: support all integer types in genTypedValue
Diffstat (limited to 'test/behavior/struct.zig')
| -rw-r--r-- | test/behavior/struct.zig | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig index e4b64a39d3..6a0ebb5123 100644 --- a/test/behavior/struct.zig +++ b/test/behavior/struct.zig @@ -114,8 +114,6 @@ test "struct byval assign" { } test "call struct static method" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - const result = StructWithNoFields.add(3, 4); try expect(result == 7); } @@ -193,8 +191,6 @@ test "store member function in variable" { } test "member functions" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - const r = MemberFnRand{ .seed = 1234 }; try expect(r.getSeed() == 1234); } @@ -244,8 +240,6 @@ test "call method with mutable reference to struct with no fields" { } test "usingnamespace within struct scope" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - const S = struct { usingnamespace struct { pub fn inner() i32 { |
