tgenconst9.pp 201 B

123456789101112
  1. {%FAIL}
  2. {$mode objfpc}
  3. {
  4. test type mismatch when specializing constants with types
  5. }
  6. program tgenconst9;
  7. type
  8. generic TByte<const U: Byte> = record end;
  9. var
  10. a: specialize TByte<string>;
  11. begin
  12. end.