tb0140.pp 257 B

1234567891011121314
  1. {%fail}
  2. {
  3. This program should fail compilation since array of const
  4. with cdecl modifier can only be used on last parameter of
  5. routine
  6. }
  7. procedure proc_const_smallarray_const_2(const arr : array of const; b: byte);cdecl;
  8. begin
  9. end;
  10. Begin
  11. end.