24 Sep 2019 8:39
#24422
The following code will cause an internal compiler error. When running an external MAKE, it will give an error callback, but no indication of the line causing the problem. PLATO will show line 4 as the error line.
integer i
i = 1
SELECT CASE(I)
CASE(1::3)
STOP
CASE DEFAULT
STOP
END SELECT
STOP
end