mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
20 lines
229 B
ObjectPascal
20 lines
229 B
ObjectPascal
{ %norun}
|
|
program tw18767a;
|
|
|
|
{$mode delphi}{$H+}
|
|
|
|
type
|
|
TFoo = class
|
|
strict private
|
|
const
|
|
n = 3;
|
|
var
|
|
x: array[0..1] of record
|
|
y: array[0..n] of integer;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
TFoo.Create;
|
|
end.
|