tw33069.pp 486 B

12345678910111213141516171819
  1. { %OPT=-al }
  2. program test;
  3. {$mode objfpc}
  4. type
  5. generic IIncrediblyLongInterfaceNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaame<T> = interface
  6. end;
  7. generic TGenericImplementationOfLongInterfaceName<T> =
  8. class(TInterfacedObject,
  9. specialize IIncrediblyLongInterfaceNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaame<T>)
  10. end;
  11. TIWillBreakYou = specialize TGenericImplementationOfLongInterfaceName<Integer>;
  12. begin
  13. end.