This commit is contained in:
florian 2024-04-10 23:01:25 +02:00
parent fc3d71bba3
commit 74bed63e28

7
tests/tbs/tb0714.pp Normal file
View File

@ -0,0 +1,7 @@
var
s : string[20];
begin
setlength(s,21);
if length(s)>sizeof(s)-1 then
halt(1);
end.