mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* do not throw an internal error later on in case of a recursive call, if the declaration of the function was faulty, resolves #37460
git-svn-id: trunk@45975 -
This commit is contained in:
parent
b412259c1c
commit
6f661e44d0
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -16541,6 +16541,7 @@ tests/webtbf/tw37272b.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw37303.pp -text svneol=native#text/pascal
|
||||
tests/webtbf/tw3738.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3740.pp svneol=native#text/plain
|
||||
tests/webtbf/tw37460.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw3790.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3812.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3930a.pp svneol=native#text/plain
|
||||
|
@ -1454,7 +1454,12 @@ unit cpupara;
|
||||
numclasses:=classify_argument(p.proccalloption,result.def,nil,vs_value,result.def.size,classes,0,False);
|
||||
{ this would mean a memory return }
|
||||
if (numclasses=0) then
|
||||
internalerror(2010021502);
|
||||
begin
|
||||
{ we got an error before, so we just skip all the return type generation }
|
||||
if result.def.typ=errordef then
|
||||
exit;
|
||||
internalerror(2010021502);
|
||||
end;
|
||||
|
||||
if (numclasses > MAX_PARA_CLASSES) then
|
||||
internalerror(2010021503);
|
||||
|
5
tests/webtbf/tw37460.pp
Normal file
5
tests/webtbf/tw37460.pp
Normal file
@ -0,0 +1,5 @@
|
||||
{ %fail }
|
||||
function x(x : real) : ;
|
||||
begin
|
||||
tmp in [x div x(1)]
|
||||
end.
|
Loading…
Reference in New Issue
Block a user