fpc/tests/webtbs/tw3174.pp
2004-06-29 19:48:42 +00:00

16 lines
256 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3174 }
{ Submitted by "C Western" on 2004-06-19 }
{ e-mail: mftq75@dsl.pipex.com }
program test;
procedure Mumble(s: PChar);
begin
WriteLn(s^);
if s^<>'A' then
halt(1);
end;
begin
Mumble('A');
end.