fpc/tests/webtbs/tw18767b.pp
2011-09-07 01:32:43 +00:00

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.