mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
18 lines
249 B
ObjectPascal
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. |