mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
20 lines
486 B
ObjectPascal
20 lines
486 B
ObjectPascal
{ %OPT=-al }
|
|
program test;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic IIncrediblyLongInterfaceNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaame<T> = interface
|
|
end;
|
|
|
|
generic TGenericImplementationOfLongInterfaceName<T> =
|
|
class(TInterfacedObject,
|
|
specialize IIncrediblyLongInterfaceNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaame<T>)
|
|
end;
|
|
|
|
TIWillBreakYou = specialize TGenericImplementationOfLongInterfaceName<Integer>;
|
|
|
|
begin
|
|
|
|
end.
|