fpc/bugs/bug0212.pp
1999-02-04 12:46:42 +00:00

18 lines
249 B
ObjectPascal

program proptest;
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.