fpc/tests/webtbs/tw6742.pp
florian 02da87ff94 + new test
git-svn-id: trunk@3563 -
2006-05-18 17:26:23 +00:00

15 lines
139 B
ObjectPascal

type
openstring=integer;
procedure test(var x:openstring);
begin
writeln(x);
end;
var
x: openstring;
begin
x:=1;
test(x);
end.