diff --git a/src/value.zig b/src/value.zig index 9909cab5ce535dcbcf73078e3a5fbb2932e2d9a5..4e9ea882e9d9596504fd5deb9d4b15fb9747186c 100644 --- a/src/value.zig +++ b/src/value.zig @@ -2689,6 +2689,12 @@ pub const Value = extern union { // to have only one possible value itself. .the_only_possible_value => return val, + // pointer to integer casted to pointer of array + .int_u64, .int_i64 => { + assert(index == 0); + return val; + }, + else => unreachable, } }