tgenconst23.pp 191 B

12345678910111213141516171819
  1. { %FAIL }
  2. unit tgenconst23;
  3. {$mode objfpc}
  4. interface
  5. implementation
  6. generic procedure Test<A; const N: LongInt>; forward;
  7. generic procedure Test<A; const N: String>;
  8. begin
  9. end;
  10. end.