mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-24 17:41:03 +01: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.
|