fpc/tests/webtbf/tw9894b.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

38 lines
446 B
ObjectPascal

{ %fail }
{$mode delphi}
unit tw9894b;
interface
Type
TMyInteger = Class
Value : Integer;
end;
TMyRec2 = record
MyInteger : TMyInteger;
end;
TMyRec = record
MyRec2 : TMyRec2;
end;
TMyClass = Class
FMyRec : TMyRec;
Private
Procedure DoSomething;
Property MyRec : TMyRec Read FMyRec;
end;
Implementation
Procedure TMyClass.DoSomething;
begin
MyRec.MyRec2.MyInteger:=TMyInteger(nil);
end;
end.