aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2023-05-19 14:17:58 +0200
committerRobin Voetter <robin@voetter.nl>2023-05-20 17:30:23 +0200
commit65157d30ab90de01da583dd97ee2409d8ad8aeb0 (patch)
tree0c9767c8c174bfd55fd0d9c5525d4ddef1ec7ceb /test/behavior/struct.zig
parent77b8bf2b82ffa71fc8ecf85f6780130f27dbeaf3 (diff)
downloadzig-65157d30ab90de01da583dd97ee2409d8ad8aeb0.tar.gz
zig-65157d30ab90de01da583dd97ee2409d8ad8aeb0.zip
spirv: ptr_elem_val
Implements the ptr_elem_val air tag. Implementation is unified with ptr_elem_ptr.
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index a4a24ef3b3..4553596c41 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -121,8 +121,6 @@ test "struct byval assign" {
}
test "call struct static method" {
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
-
const result = StructWithNoFields.add(3, 4);
try expect(result == 7);
}