fpc/tests/webtbs/tw12756.pp
2009-03-22 16:21:06 +00:00

25 lines
362 B
ObjectPascal

{$mode delphi}
{$M+}
type
TFooR = object { put "record" here and it works. }
Thing : integer;
end;
TFoo = class
private
fRecord : TFooR;
published
property Thing : integer read fRecord.Thing;
end;
var
fFoo : TFoo;
begin
fFoo := TFoo.Create;
fFoo.fRecord.Thing:=123;
if (fFoo.Thing <> 123) then
halt(1);
fFoo.free;
end.