fpc/tests/webtbs/tw26402.pp
2016-08-12 13:35:37 +00:00

21 lines
282 B
ObjectPascal

{ %opt=-vh -Seh }
{ %norun }
{$MODESWITCH ADVANCEDRECORDS+}
program test;
type
TestInternals = record
private
type
TTest = record
Bar: AnsiString;
end;
end;
var
Foo: TestInternals.TTest;
begin
Foo.Bar := '';
end.