| ... | @@ -2689,6 +2689,12 @@ pub const Value = extern union { | ... | @@ -2689,6 +2689,12 @@ pub const Value = extern union { |
| 2689 | // to have only one possible value itself. | 2689 | // to have only one possible value itself. |
| 2690 | .the_only_possible_value => return val, | 2690 | .the_only_possible_value => return val, |
| 2691 | | 2691 | |
| | 2692 | // pointer to integer casted to pointer of array |
| | 2693 | .int_u64, .int_i64 => { |
| | 2694 | assert(index == 0); |
| | 2695 | return val; |
| | 2696 | }, |
| | 2697 | |
| 2692 | else => unreachable, | 2698 | else => unreachable, |
| 2693 | } | 2699 | } |
| 2694 | } | 2700 | } |