mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 20:19:26 +02:00
14 lines
186 B
ObjectPascal
14 lines
186 B
ObjectPascal
{ Old file: tbs0234.pp }
|
|
{ New with void pointer OK 0.99.11 (PM) }
|
|
|
|
program bug0232;
|
|
|
|
{$mode tp}
|
|
|
|
var p:pointer;
|
|
|
|
begin
|
|
new(p);
|
|
dispose(p);
|
|
end.
|