diff options
| author | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-05-24 20:47:45 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-05-24 15:34:52 -0700 |
| commit | c847a462ae11e0d483ad877b3ecc9ec291c29bb3 (patch) | |
| tree | 1114d6a36b25feba7175d46eabc3f511f227094b /test/behavior | |
| parent | 26376c9fda910e28a686d3f772dbda4319abc16d (diff) | |
| download | zig-c847a462ae11e0d483ad877b3ecc9ec291c29bb3.tar.gz zig-c847a462ae11e0d483ad877b3ecc9ec291c29bb3.zip | |
stage2 ARM: update to new union layout
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/error.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/error.zig b/test/behavior/error.zig index 230c2540dc..83a9384d71 100644 --- a/test/behavior/error.zig +++ b/test/behavior/error.zig @@ -441,6 +441,7 @@ test "return function call to error set from error union function" { test "optional error set is the same size as error set" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO comptime try expect(@sizeOf(?anyerror) == @sizeOf(anyerror)); comptime try expect(@alignOf(?anyerror) == @alignOf(anyerror)); |
