aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-12-03 07:20:42 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2022-12-03 08:40:08 -0500
commitec3116f57375bac136d07c6c4d9f07cbcc58194c (patch)
tree788b85a9f468a03995bd6debe35de36bb39fc8d1 /test/behavior/struct.zig
parent7fb6eb3d14c232d397a4737f9dbd24dbae3db60f (diff)
downloadzig-ec3116f57375bac136d07c6c4d9f07cbcc58194c.tar.gz
zig-ec3116f57375bac136d07c6c4d9f07cbcc58194c.zip
cbe: fix zero-bit struct field pointer
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 39e1bd10bb..78eb820daa 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -1390,7 +1390,6 @@ test "address of zero-bit field is equal to address of only field" {
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
{
const A = struct { b: void = {}, u: u8 };