diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-02-24 22:27:54 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-02-24 22:28:37 -0700 |
| commit | 27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf (patch) | |
| tree | 83cd40198ef1f55946163766a04fe9202a510206 /test/behavior/pointers.zig | |
| parent | adb746a7017ba6f91974d5e940bc8a8f64bb45f5 (diff) | |
| download | zig-27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf.tar.gz zig-27eb42c15e4e9ab547eaf02cca8810cc0e10e6bf.zip | |
Sema: implement tupleFieldVal, fix comptime elem_ptr
Diffstat (limited to 'test/behavior/pointers.zig')
| -rw-r--r-- | test/behavior/pointers.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/pointers.zig b/test/behavior/pointers.zig index 2832dd01d3..d3d2188b12 100644 --- a/test/behavior/pointers.zig +++ b/test/behavior/pointers.zig @@ -177,8 +177,6 @@ test "implicit cast error unions with non-optional to optional pointer" { } test "compare equality of optional and non-optional pointer" { - if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO - const a = @intToPtr(*const usize, 0x12345678); const b = @intToPtr(?*usize, 0x12345678); try expect(a == b); |
