mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 22:08:18 +02:00
13 lines
184 B
ObjectPascal
13 lines
184 B
ObjectPascal
{ %FAIL }
|
|
{ Old file: tbf0234.pp }
|
|
{ New with void pointer OK 0.99.11 (PM) }
|
|
|
|
program bug0232;
|
|
|
|
var p:pointer;
|
|
|
|
begin
|
|
new(p);
|
|
dispose(p);
|
|
end.
|