fpc/tests/tbs/tb0441.pp
florian 2dd7c144c4 * fixed test
git-svn-id: trunk@1371 -
2005-10-13 20:01:17 +00:00

13 lines
132 B
ObjectPascal

{$mode fpc}
operator :=(x:ShortInt)RESULT:ShortString;
begin
Val(RESULT,x);
end;
var
s:ShortString;
begin
s:=12;
end.