Internal error 2014091205 raised when array constants have too few elements, reborn.
Code below is malformed as inner arrays have too few elements, but error messages are complemented with an unappealing Internal error 2014091205.
Searching the error ID gives #39980 (closed), it seems that that problem has not been completely fixed.
const
Outer: array[0 .. 1] of record
inner: array[0 .. 1] of uint32;
end =
(
(inner: ()),
(inner: (1))
);
begin
end.
Edited by Rika