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

17 lines
114 B
ObjectPascal

{ Old file: tbs0019.pp }
{ }
type
b = ^x;
x = byte;
var
pb : b;
begin
new(pb);
pb^:=10;
end.