fpc/tests/webtbs/tw3172.pp
2005-01-18 15:47:22 +00:00

18 lines
206 B
ObjectPascal

{ %opt=-Sew }
type
PUI32 = ^Longword;
var
P : PUI32;
Count : Longint;
Dw : Longword;
begin
Dw:=1;
Count:=1;
p:=@DW;
// Increase pointer
Inc(P,Count);
if Dw<>1 then
halt(1);
end.