Closed jtempl closed 7 years ago
The following code leads to a compiler trap when compiling the NEW statement.
MODULE Hello; VAR code : POINTER TO ARRAY OF RECORD label : POINTER TO RECORD END; END; BEGIN NEW(code, 666); END Hello.
fixed by calling OfrontOPC.Andent instead of Ident for the type name parameter of _NEWARR.
The following code leads to a compiler trap when compiling the NEW statement.
MODULE Hello; VAR code : POINTER TO ARRAY OF RECORD label : POINTER TO RECORD END; END; BEGIN NEW(code, 666); END Hello.