fpc/tests/webtbs/tw4162.pp
peter 86bf41f689 * prefer shortstring to ansistring over ansistring to shortstring
* don't prefer widestring to short/ansistring

git-svn-id: trunk@594 -
2005-07-06 13:09:50 +00:00

13 lines
211 B
ObjectPascal

Var
S: ansistring;
SS: shortstring;
Begin
SS := 'find';
SetLength(S, 300);
S := S + SS;
Writeln(Pos(SS, S)); // This will not find the occurance of 'find'
if pos(ss,s)<>301 then
halt(1);
End.