mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 06:48:10 +02:00
10 lines
91 B
ObjectPascal
10 lines
91 B
ObjectPascal
{ %fail }
|
|
|
|
var
|
|
p: pointer;
|
|
begin
|
|
p:=nil+1;
|
|
if (p<>pointer(1)) then
|
|
halt(1);
|
|
end.
|