Skip to content

Critical bug - shading of record fields

shading of record fields

MODULE TestField;
TYPE
	A* = RECORD
		x*: SIZE;
	END;
	B* = RECORD(A)
		x*: ARRAY 256 OF CHAR;
	END;
END TestField.
Edited by Sergey Durmanov