mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
13 lines
126 B
ObjectPascal
13 lines
126 B
ObjectPascal
program WrongHint;
|
|
type
|
|
PRecord = ^TRecord;
|
|
TRecord = record
|
|
end;
|
|
var
|
|
x: PRecord;
|
|
begin
|
|
|
|
New(x);
|
|
Dispose(x);
|
|
end.
|