mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
29 lines
541 B
ObjectPascal
29 lines
541 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw39679;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$ModeSwitch implicitfunctionspecialization}
|
|
|
|
type
|
|
generic TBase<T> = class(TObject);
|
|
generic TChild<T> = class(specialize TBase<T>);
|
|
TLongIntChild = class(specialize TChild<LongInt>);
|
|
TLongIntBase = class(specialize TBase<LongInt>);
|
|
|
|
generic procedure Foo<T>(lst: specialize TBase<T>);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
lst: specialize TChild<Integer>;
|
|
lst2: TLongIntChild;
|
|
lst3: TLongIntBase;
|
|
begin
|
|
specialize Foo<Integer>(lst); // works
|
|
Foo(lst); // Error
|
|
Foo(lst2);
|
|
Foo(lst3);
|
|
end.
|
|
|