monkey2 icon indicating copy to clipboard operation
monkey2 copied to clipboard

Operator /= silently crashes app (division by zero)

Open engor opened this issue 7 years ago • 1 comments

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

engor avatar Sep 02 '18 09:09 engor

Bug confirmed :(

seyhajin avatar Jun 04 '19 15:06 seyhajin