aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/enum.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-07-05 03:49:09 -0700
committerDavid Rubin <daviru007@icloud.com>2024-07-26 04:05:39 -0700
commit8d30fc45c424ed1aaf9067436a64b0744619c250 (patch)
tree69d6d86af25281f7d999990629305da76ff9913b /test/behavior/enum.zig
parent9766b68c475438e24885dd75cf137d51e72ccfa3 (diff)
downloadzig-8d30fc45c424ed1aaf9067436a64b0744619c250.tar.gz
zig-8d30fc45c424ed1aaf9067436a64b0744619c250.zip
riscv: implement more operators
we can run `std.debug.print` now, with both run-time strings and integers!
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 7972135bfa..982adc234d 100644
--- a/test/behavior/enum.zig
+++ b/test/behavior/enum.zig
@@ -1076,7 +1076,6 @@ test "enum literal casting to optional" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
var bar: ?Bar = undefined;
bar = .B;