mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00

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 -
28 lines
380 B
ObjectPascal
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.
|
|
|