tgenconst8.pp 182 B

1234567891011121314
  1. {%FAIL}
  2. {$mode objfpc}
  3. {
  4. test out of range error with constants
  5. }
  6. program tgenconst8;
  7. type
  8. generic TByte<const U: Byte> = record end;
  9. var
  10. a: specialize TByte<300>;
  11. begin
  12. end.