fpc/tests/webtbs/tw0801.pp
2000-11-30 22:38:14 +00:00

12 lines
125 B
ObjectPascal

program WrongHint;
type
PRecord = ^TRecord;
TRecord = record
end;
var
x: PRecord;
begin
New(x);
Dispose(x);
end.