mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 19:07:59 +02:00
24 lines
366 B
ObjectPascal
24 lines
366 B
ObjectPascal
{ Old file: tbs0212.pp }
|
|
{ problem with properties OK 0.99.11 (PFV) }
|
|
|
|
program proptest;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TMyRec = record
|
|
Int: Integer;
|
|
Str: String;
|
|
end;
|
|
|
|
TMyClass = class
|
|
private
|
|
FMyRec: TMyRec;
|
|
public
|
|
property AnInt: Integer read FMyRec.Int;
|
|
property AStr: String read FMyRec.Str;
|
|
end;
|
|
|
|
begin
|
|
end.
|