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

+ added tests Note: what Delphi /does/ allow however is to overload a generic routine with a generic type... go figure. :/ We currently don't allow that git-svn-id: trunk@48002 -
25 lines
181 B
ObjectPascal
25 lines
181 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tgenfunc27;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
Test = record
|
|
|
|
end;
|
|
|
|
generic procedure Test<T>;
|
|
|
|
implementation
|
|
|
|
generic procedure Test<T>;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|