mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
15 lines
140 B
ObjectPascal
15 lines
140 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tw32412;
|
|
|
|
var
|
|
p: Pointer;
|
|
begin
|
|
Delete();
|
|
Delete(p);
|
|
Delete(p, 1);
|
|
Insert();
|
|
Insert(p);
|
|
Insert(p, 1);
|
|
end.
|