mirror of
https://github.com/ziglang/zig.git
synced 2025-12-14 02:03:08 +00:00
8 lines
151 B
Zig
8 lines
151 B
Zig
test {
|
|
comptime {
|
|
const tuple_with_ptrs = .{ &0, &0 };
|
|
const field_ptr = (&tuple_with_ptrs.@"0");
|
|
_ = field_ptr.*;
|
|
}
|
|
}
|