fpc/tests/test/tstring7.pp
2001-08-01 10:38:27 +00:00

19 lines
252 B
ObjectPascal

{ Stupid compare test
but it once failed for m68k code PM }
var
st : string;
begin
st:='t';
if st > 'ta' then
begin
writeln('Error "t">"ta" is wrong !');
runerror(1);
end
else
writeln('String compare works OK !');
end.