mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:49:33 +02:00
10 lines
99 B
ObjectPascal
10 lines
99 B
ObjectPascal
{ %fail }
|
|
program Project1;
|
|
type
|
|
PFoo = ^Integer;
|
|
var
|
|
a: Pointer;
|
|
begin
|
|
a:= @New(PFoo);
|
|
end.
|