ABlobOfGarbage
Results
2
issues of
ABlobOfGarbage
### Zig Version 0.11.0-dev.1635+d09e39aef ### Steps to Reproduce and Observed Behavior Try to compile a program that uses those functions. ### Expected Behavior I don't see a reason for them...
bug
Consider the following: ``` fn contrived(arr: ^[]int, x: int): int { i := len(arr^) arr^ = append(arr^, 0) if x != 0 { arr^[i] = contrived(arr, x-1) //val := contrived(arr,...
bug