* fix #39675: consider the symbols for unnamed parameters as used so that there won't be unnecessary hints about them

+ added test
This commit is contained in:
Sven/Sarah Barth 2022-04-21 22:21:04 +02:00
parent 76753438ed
commit 22a4cc66ec
2 changed files with 38 additions and 0 deletions

View File

@ -759,6 +759,8 @@ uses
begin
newtype:=ctypesym.create(def.fullownerhierarchyname(false)+typName[def.typ]+'$'+def.unique_id_str,def);
newtype.owner:=def.owner;
{ ensure that there's no warning }
newtype.refs:=1;
end;
if not assigned(newtype) then
internalerror(2021020904);

36
tests/webtbs/tw39675.pp Normal file
View File

@ -0,0 +1,36 @@
{ %NORUN }
program tw39675;
{ "private type xyz never used" }
{$warn 5071 error}
{$mode delphi}
{$ModeSwitch implicitfunctionspecialization}
type
TWingFunc<T> = function(aArg: T): T of object;
TBird = class
public
function Fly<T>(aFunc: TWingFunc<T>; ArgB: T): T;
function Flap(s: string): string;
end;
{ TBird }
function TBird.Fly<T>(aFunc: TWingFunc<T>; ArgB: T): T;
begin
Result:=aFunc(ArgB);
end;
function TBird.Flap(s: string): string;
begin
Result:='Flap'+s;
end;
var
Bird: TBird;
begin
Bird:=TBird.Create;
writeln(Bird.Fly(Bird.Flap,'Foo'));
end.