mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:58:31 +02:00
25 lines
236 B
ObjectPascal
25 lines
236 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tb0266a;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TTest1 = class
|
|
fTest: String;
|
|
end;
|
|
|
|
TTest2 = class
|
|
private
|
|
fTest: TTest1;
|
|
public
|
|
property Test: String read fTest.fTest;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|