fpc/tests/webtbs/tw2540.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

19 lines
236 B
ObjectPascal

var
C : Char;
S : AnsiString;
begin
S := '';
SetLength(S,1);
S[1] := '?';
SetLength(S,2);
S[2] := '?';
if (s <> '??') then
halt(1);
S := '';
S := S + '?';
S := S + '?';
if (s <> '??') then
halt(1);
end.