aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/12003.zig
blob: 98c74b77ab978b582961223c64b0ad6983180e85 (plain)
1
2
3
4
5
6
7
test {
    comptime {
        const tuple_with_ptrs = .{ &0, &0 };
        const field_ptr = (&tuple_with_ptrs.@"0");
        _ = field_ptr.*;
    }
}