fpc/tests/webtbs/tw30179.pp
svenbarth 04adcf2a12 Fix for Mantis #30179 and #30203.
pexpr.pas:
  * handle_factor_typenode: rework code for records and objects so that Delphi style specializations are handled as well
  * sub_expr.generate_inline_specialization: also do a typecheck pass on pload to be sure that we have a resultdef

+ added tests

git-svn-id: trunk@33876 -
2016-06-01 20:06:40 +00:00

28 lines
380 B
ObjectPascal

{ %NORUN }
program tw30179;
{$MODE DELPHI}
type
TTest1 = record
class function Add<T>(const A, B: T): T; static; inline;
end;
class function TTest1.Add<T>(const A, B: T): T;
begin
Result := A + B;
end;
procedure Main();
var
I: Integer;
begin
I := TTest1.Add<Integer>(1, 2); // project1.lpr(14,26) Error: Identifier not found "Add$1"
end;
begin
Main();
end.