fpc/tests/test/tstring8.pp
Jonas Maebe 9b9dd342c5 * fixed strpos() in case source or target is nil
+ added test for this

git-svn-id: trunk@1907 -
2005-12-09 14:57:10 +00:00

14 lines
174 B
ObjectPascal

uses strings;
var
a, b: pchar;
begin
a := nil;
b := 'abc';
if (strpos(a,b) <> nil) or
(strpos(b,a) <> nil) or
(strpos(a,a) <> nil) then
halt(1);
end.