mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 00:42:06 +02:00
+ added
This commit is contained in:
parent
c3326c434a
commit
a1db92451c
19
tests/webtbs/tw2540.pp
Normal file
19
tests/webtbs/tw2540.pp
Normal file
@ -0,0 +1,19 @@
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user