mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-27 15:08:14 +02:00
15 lines
289 B
ObjectPascal
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.
|