Another situation leads to a crash of the IDE in 0.8.2 and 0.9.0
OPTION EXPLICIT
TYPE GameGrid
player AS Integer
nTake AS Integer
cx AS Integer
cy AS Integer
END TYPE
DIM SHARED GG(8, 8) AS GameGrid
DIM SHARED HUMAN AS Integer
SUB InitGame
HUMAN = 4
GG(5, 5).player = HUMAN
END SUB
Another situation leads to a crash of the IDE in 0.8.2 and 0.9.0