fpc/tests/webtbs/tw3952.pp
peter 79ec67806d * remove svn:executable
git-svn-id: trunk@3050 -
2006-03-27 07:20:35 +00:00

15 lines
289 B
ObjectPascal

{ %opt=-Sew }
{ Source provided for Free Pascal Bug Report 3952 }
{ Submitted by "Ivo Steinmann" on 2005-05-08 }
{ e-mail: istienmann@bluewin.ch }
var
P: Pointer;
X: Longword;
begin
X := 0;
P := nil;
P := Pointer(PtrUInt(P) + X - 12);
P := Pointer(PtrUInt(P) + X + 12);
end.