mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:47:54 +02:00
* fix for Mantis #35348: correctly handle symbols that aren't parameter types (e.g. default values)
+ added test git-svn-id: trunk@41869 -
This commit is contained in:
parent
c147debda1
commit
e6add40495
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -14843,6 +14843,7 @@ tests/webtbf/tw3488.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3495.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3502.pp svneol=native#text/plain
|
||||
tests/webtbf/tw35149a.pp svneol=native#text/plain
|
||||
tests/webtbf/tw35348.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw3553.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3562.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3583.pp svneol=native#text/plain
|
||||
|
@ -627,7 +627,11 @@ implementation
|
||||
while count > 0 do
|
||||
begin
|
||||
parasym:=tparavarsym(pf.parast.SymList[count-1]);
|
||||
if is_boolean(parasym.vardef) then
|
||||
if parasym.typ<>paravarsym then
|
||||
begin
|
||||
dec(count);
|
||||
end
|
||||
else if is_boolean(parasym.vardef) then
|
||||
begin
|
||||
if parasym.name='RANGECHECK' then
|
||||
begin
|
||||
|
13
tests/webtbf/tw35348.pp
Normal file
13
tests/webtbf/tw35348.pp
Normal file
@ -0,0 +1,13 @@
|
||||
{ %FAIL }
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
Type
|
||||
TAZ=String;
|
||||
|
||||
operator inc(az: TAZ; i: integer=1) raz:TAZ; // inline;
|
||||
begin
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user