fpc/tests/webtbs/tw9894.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

33 lines
400 B
ObjectPascal

{$mode delphi}
unit tw9894;
interface
Type
PMyInteger = ^TMyInteger;
TMyInteger = record
Value : Integer;
end;
TMyRec = record
MyInteger : PMyInteger;
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.