fpc/tests/tbs0019.pp
1998-10-28 10:06:25 +00:00

14 lines
92 B
ObjectPascal

type
b = ^x;
x = byte;
var
pb : b;
begin
new(pb);
pb^:=10;
end.