aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/enum.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-06-25 14:59:22 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-06-25 21:16:51 +0200
commit960c14206094484cee056b8806b9b8f75a84891d (patch)
tree0315d9420a504b2337b94c564ae029b20ddeec31 /test/behavior/enum.zig
parent76b28ed45238fff843e04e94657e2790ee95954b (diff)
downloadzig-960c14206094484cee056b8806b9b8f75a84891d.tar.gz
zig-960c14206094484cee056b8806b9b8f75a84891d.zip
stage2 ARM: implement basic intCast and error union wrapping
Diffstat (limited to 'test/behavior/enum.zig')
-rw-r--r--test/behavior/enum.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig
index e230032d04..602ad47b59 100644
--- a/test/behavior/enum.zig
+++ b/test/behavior/enum.zig
@@ -24,7 +24,6 @@ fn testIntToEnumEval(x: i32) !void {
const IntToEnumNumber = enum { Zero, One, Two, Three, Four };
test "int to enum" {
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
try testIntToEnumEval(3);