mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 07:19:26 +02:00
+ added
git-svn-id: trunk@1889 -
This commit is contained in:
parent
c9b2e34524
commit
0cfea2fac0
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -6388,6 +6388,7 @@ tests/webtbs/tw4496.pp svneol=native#text/plain
|
||||
tests/webtbs/tw4519.pp -text svneol=unset#text/plain
|
||||
tests/webtbs/tw4520.pp -text svneol=unset#text/plain
|
||||
tests/webtbs/tw4529.pp -text svneol=unset#text/plain
|
||||
tests/webtbs/tw4533.pp svneol=native#text/plain
|
||||
tests/webtbs/tw4537.pp svneol=native#text/plain
|
||||
tests/webtbs/tw4540.pp -text svneol=unset#text/plain
|
||||
tests/webtbs/tw4557.pp svneol=native#text/plain
|
||||
|
15
tests/webtbs/tw4533.pp
Normal file
15
tests/webtbs/tw4533.pp
Normal file
@ -0,0 +1,15 @@
|
||||
{$mode objfpc}
|
||||
{$openstrings+}
|
||||
procedure t(out s: shortstring);
|
||||
begin
|
||||
writeln(high(s));
|
||||
if high(s) <> 4 then
|
||||
halt(1);
|
||||
end;
|
||||
|
||||
var
|
||||
s: string[4];
|
||||
begin
|
||||
t(s);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user