fpc/tests/tbs/tb0441.pp
peter 594c8943eb * new bugs
* added $mode fpc
2005-04-04 16:29:44 +00:00

13 lines
131 B
ObjectPascal

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