* delay setting of pd_body and pd_implement till the header of a generic

procedure is parsed, resolves #37261

git-svn-id: trunk@45717 -
This commit is contained in:
florian 2020-06-30 20:36:51 +00:00
parent 062fbb5e41
commit ff295bf349
3 changed files with 24 additions and 1 deletions

1
.gitattributes vendored
View File

@ -18346,6 +18346,7 @@ tests/webtbs/tw3721.pp svneol=native#text/plain
tests/webtbs/tw37218.pp svneol=native#text/pascal
tests/webtbs/tw37228.pp svneol=native#text/plain
tests/webtbs/tw37254.pp svneol=native#text/pascal
tests/webtbs/tw37261.pp svneol=native#text/pascal
tests/webtbs/tw37272a.pp svneol=native#text/pascal
tests/webtbs/tw3742.pp svneol=native#text/plain
tests/webtbs/tw3751.pp svneol=native#text/plain

View File

@ -1247,7 +1247,7 @@ uses
end;
procdef:
begin
pdflags:=[pd_body,pd_implemen];
pdflags:=[];
if genericdef.owner.symtabletype=objectsymtable then
include(pdflags,pd_object)
else if genericdef.owner.symtabletype=recordsymtable then
@ -1259,6 +1259,7 @@ uses
handle_calling_convention(tprocdef(result),hcc_default_actions_intf)
else
handle_calling_convention(tprocdef(result),hcc_default_actions_impl);
pdflags:=pdflags+[pd_body,pd_implemen];
proc_add_definition(tprocdef(result));
{ for partial specializations we implicitely declare the routine as
having its implementation although we'll not specialize it in reality }

21
tests/webtbs/tw37261.pp Normal file
View File

@ -0,0 +1,21 @@
program Project1;
{$mode delphi}
type
{ TClass }
TClass = class
public
class function ToString<T>(A: T; B: string): string; reintroduce;
end;
{ TClass }
class function TClass.ToString<T>(A: T; B: string): string;
begin end;
begin
TClass.ToString<integer>(1, '');
end.