mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-11 01:47:01 -04: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.*;
|
|
}
|
|
}
|