fpc/tests/webtbs/tw4925.pp
florian 5d9f3cf33d * fixed s<'', fixes 4925
git-svn-id: trunk@3505 -
2006-05-13 20:10:27 +00:00

8 lines
77 B
ObjectPascal

var
s : string;
begin
s:='asdf';
if not(''<s) then
halt(1);
end.