mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 20:10:49 +02:00
29 lines
287 B
ObjectPascal
29 lines
287 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tb0266b;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TTest1 = class
|
|
fTest: String;
|
|
end;
|
|
|
|
TTest2 = record
|
|
fTest: TTest1;
|
|
end;
|
|
|
|
TTest3 = class
|
|
private
|
|
fTest: TTest2;
|
|
public
|
|
property Test: String read fTest.fTest.fTest;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|