tb0144.pp 173 B

12345678910111213141516
  1. { %FAIL }
  2. { OpenString with high should not be allowed }
  3. program tb0144;
  4. procedure TestOpen(var s: OpenString); cdecl;
  5. var
  6. b: byte;
  7. begin
  8. b:=high(s);
  9. end;
  10. Begin
  11. end.