+ testing operator overloading

This commit is contained in:
mazen 2002-12-26 11:34:57 +00:00
parent 551caf65d2
commit 6e42e8acf0

10
tests/tbs/tb0441.pp Normal file
View File

@ -0,0 +1,10 @@
program Test;
operator :=(x:LongInt)RESULT:ShortString;
begin
Val(RESULT,x);
end;
var
s:ShortString;
begin
s:=12;
end.