fpc/tests/webtbf/tw2719.pp
2003-10-08 19:12:27 +00:00

22 lines
340 B
ObjectPascal

{ %fail }
{ Source provided for Free Pascal Bug Report 2719 }
{ Submitted by "Samuel L.B." on 2003-10-06 }
{ e-mail: NLBCHGPOHSXQ@spammotel.com }
program A;
const
cmConnect: Char = #1;
cmDisconnect: Char = #2;
function GetCh(Id: Byte): Char;
begin
end;
begin
case GetCh(1) of
cmConnect: ;
cmDisconnect: ;
end;
end.