mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
compiler: allow to hide parent function identifier inside them (by a nested function with the same name or by a local variable). Fixes mantis #0024129.
git-svn-id: trunk@25420 -
This commit is contained in:
parent
d25ae84113
commit
1b81afcd42
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -13488,6 +13488,7 @@ tests/webtbs/tw2397.pp svneol=native#text/plain
|
||||
tests/webtbs/tw24007.pp svneol=native#text/plain
|
||||
tests/webtbs/tw24071.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw2409.pp svneol=native#text/plain
|
||||
tests/webtbs/tw24129.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw24131.pp svneol=native#text/plain
|
||||
tests/webtbs/tw24197.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2421.pp svneol=native#text/plain
|
||||
|
@ -907,6 +907,14 @@ implementation
|
||||
HideSym(srsym);
|
||||
searchagain:=true;
|
||||
end
|
||||
else
|
||||
if (m_delphi in current_settings.modeswitches) and
|
||||
(srsym.typ=absolutevarsym) and
|
||||
([vo_is_funcret,vo_is_result]*tabstractvarsym(srsym).varoptions=[vo_is_funcret]) then
|
||||
begin
|
||||
HideSym(srsym);
|
||||
searchagain:=true;
|
||||
end
|
||||
else
|
||||
begin
|
||||
{ we use a different error message for tp7 so it looks more compatible }
|
||||
|
27
tests/webtbs/tw24129.pp
Normal file
27
tests/webtbs/tw24129.pp
Normal file
@ -0,0 +1,27 @@
|
||||
{%norun}
|
||||
program tw24129;
|
||||
|
||||
{$mode delphi}
|
||||
procedure Test;
|
||||
|
||||
function Next: integer;
|
||||
function Next: integer;
|
||||
function Next: integer;
|
||||
var
|
||||
Next: integer;
|
||||
begin
|
||||
|
||||
end;
|
||||
begin
|
||||
|
||||
end;
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user