fpc/tests/webtbs/tw9894a.pp
Jonas Maebe 0ebc1e920a * allow modifying lvalues obtained by dereferencing read-only properties,
both via regular pointers and via classes (mantis 9498)

git-svn-id: trunk@8755 -
2007-10-09 13:08:36 +00:00

32 lines
371 B
ObjectPascal

{$mode delphi}
unit tw9894a;
interface
Type
TMyInteger = Class
Value : Integer;
end;
TMyRec = record
MyInteger : TMyInteger;
end;
TMyClass = Class
FMyRec : TMyRec;
Private
Procedure DoSomething;
Property MyRec : TMyRec Read FMyRec;
end;
Implementation
Procedure TMyClass.DoSomething;
begin
MyRec.MyInteger.Value:=3;
end;
end.