fpc/tests/tbs/tb0015.pp
2000-11-30 22:38:14 +00:00

16 lines
218 B
ObjectPascal

{ Old file: tbs0018.pp }
{ tests for the possibility to declare all types using pointers "forward" : type p = ^x; x=byte; OK 0.9.3 }
type
p = ^x;
x = byte;
var
b : p;
begin
new(b);
b^:=12;
end.