mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 13:19:29 +02:00

U compiler/msg/errore.msg --- Recording mergeinfo for merge of r40654 into '.': U . --- Merging r40656 into '.': U compiler/pdecvar.pas A tests/tbf/tb0266a.pp A tests/tbf/tb0266b.pp --- Recording mergeinfo for merge of r40656 into '.': G . --- Merging r41308 into '.': U tests/webtbs/tw35027.pp --- Recording mergeinfo for merge of r41308 into '.': G . --- Merging r41829 into '.': U compiler/htypechk.pas U compiler/ncal.pas A tests/tbs/tb0656.pp --- Recording mergeinfo for merge of r41829 into '.': G . --- Merging r42511 into '.': U packages/rtl-objpas/src/inc/rtti.pp U rtl/objpas/typinfo.pp U tests/test/trtti19.pp --- Recording mergeinfo for merge of r42511 into '.': G . # revisions: 40654,40656,41308,41829,42511 git-svn-id: branches/fixes_3_2@43410 -
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.
|
|
|