tw2719.pp 340 B

123456789101112131415161718192021
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 2719 }
  3. { Submitted by "Samuel L.B." on 2003-10-06 }
  4. { e-mail: [email protected] }
  5. program A;
  6. const
  7. cmConnect: Char = #1;
  8. cmDisconnect: Char = #2;
  9. function GetCh(Id: Byte): Char;
  10. begin
  11. end;
  12. begin
  13. case GetCh(1) of
  14. cmConnect: ;
  15. cmDisconnect: ;
  16. end;
  17. end.