mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
21 lines
282 B
ObjectPascal
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.
|