fpc/tests/tbs/tbs0296.pp
1999-12-02 18:15:59 +00:00

14 lines
200 B
ObjectPascal

function test : string;
begin
test:='This should not be printed';
exit('this should be printed');
end;
begin
writeln(test);
if test<>'this should be printed' then
Halt(1);
end.