fpc/tests/tbs/tb0015.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

15 lines
217 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.