mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 17:49:27 +02:00
20 lines
234 B
ObjectPascal
20 lines
234 B
ObjectPascal
{ %norun}
|
|
program tw18767b;
|
|
|
|
{$mode delphi}{$H+}
|
|
|
|
type
|
|
TFoo = class
|
|
strict private
|
|
type
|
|
TBar = (one, two);
|
|
var
|
|
x: array of record
|
|
y: array[TBar] of integer;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
TFoo.Create;
|
|
end.
|