mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:38:19 +02:00
* Added two more tests based on bugs found by Marģers during development
This commit is contained in:
parent
5cb2f823d2
commit
c7c657a9ec
18
tests/test/tpure8.pp
Normal file
18
tests/test/tpure8.pp
Normal file
@ -0,0 +1,18 @@
|
||||
{ %OPT=-Sew }
|
||||
|
||||
program tpure8;
|
||||
|
||||
function foo(i:longword):ansistring; pure;
|
||||
var s : shortstring;
|
||||
n : longword;
|
||||
begin
|
||||
s:='';
|
||||
for n:=1 to i do s:=s +'a';
|
||||
foo:=s; // Make sure assigning to an ansistring result doesn't make the pure function ineligible.
|
||||
end;
|
||||
|
||||
begin
|
||||
if (foo(9) <> 'aaaaaaaaa') then
|
||||
Halt(1);
|
||||
writeln('ok');
|
||||
end.
|
15
tests/test/tpure9.pp
Normal file
15
tests/test/tpure9.pp
Normal file
@ -0,0 +1,15 @@
|
||||
program tpure9;
|
||||
|
||||
function foo(i:longword):shortstring; pure;
|
||||
var s : shortstring;
|
||||
n : longword;
|
||||
begin
|
||||
s:='';
|
||||
for n:=1 to i do s:=s +'a';
|
||||
//-- not assigning return value - make sure this doesn't cause a crash
|
||||
end;
|
||||
|
||||
begin
|
||||
writeln(foo(9));
|
||||
writeln('ok');
|
||||
end.
|
Loading…
Reference in New Issue
Block a user