fpc/tests/tbs/tb0441.pp
2002-12-26 11:34:57 +00:00

11 lines
131 B
ObjectPascal

program Test;
operator :=(x:LongInt)RESULT:ShortString;
begin
Val(RESULT,x);
end;
var
s:ShortString;
begin
s:=12;
end.