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
gitlab.inf.ethz.ch will not be available from Friday, 19 September 2025 18:00 to Saturday, 20 September 2025 18:00 due to an urgent migration.
To get announcements by mail please subscribe to our mailinglist https://lists.inf.ethz.ch/mailman/listinfo/gitlab-announce
shading of record fields
MODULE TestField;
TYPE
A* = RECORD
x*: SIZE;
END;
B* = RECORD(A)
x*: ARRAY 256 OF CHAR;
END;
END TestField.