mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
13 lines
138 B
ObjectPascal
13 lines
138 B
ObjectPascal
{ %fail }
|
|
const
|
|
Outer: array[0 .. 1] of record
|
|
inner: array[0 .. 1] of uint32;
|
|
end =
|
|
(
|
|
(inner: ()),
|
|
(inner: (1))
|
|
);
|
|
|
|
begin
|
|
end.
|