i is of type uint32, so once it reaches 0, decrementing again will result in the max value of uint32. Change the loop condition to check for that:
var i uint32 // code bellow works fine with int32
for i = 31; i != 0xffffffff; i-- {
fmt.Println(i)
}
Try it on the Go Playground.
Or use the math.MaxUint32 constant:
var i uint32 // code bellow works fine with int32
for i = 31; i != max.MaxUint32; i-- {
fmt.Println(i)
}
Or use the ^uint32(0) expression, where the ^ operator is the bitwise complement operator, applied on 0 will give you a value where all the bits are ones: the max value for uint32.
Although if you look at the code, it's not intuitive, hard to understand. So you should use alternatives where this is not required and are more straightforward, such as using int32 and checking for i >= 0, or use an upward loop, such as:
for i := uint32(0); i < 32; i++ {
fmt.Println(31 - i)
}
Or offset the loop variable's range with +1, so you can test for i >= 1 or i > 0:
for i := uint32(32); i > 0; i-- {
fmt.Println(i-1)
}