mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
22 lines
337 B
ObjectPascal
22 lines
337 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw39680;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$ModeSwitch implicitfunctionspecialization}
|
|
|
|
uses
|
|
Generics.Collections;
|
|
|
|
generic procedure Foo<T>(lst: specialize TEnumerable<T>);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
lst: specialize TList<Integer>; // Inherits from TEnumerable
|
|
begin
|
|
Foo(lst); // Error
|
|
specialize Foo<Integer>(lst); // works
|
|
end.
|
|
|