monkey2
monkey2 copied to clipboard
Operator /= silently crashes app (division by zero)
If we use operator /= of integer type with float value less than 1, our app will crash. Demo code:
Function Main()
Local iii:=10
iii/=0.5
Print iii
End
Bug confirmed :(