fpc/bugs/bug0296.pp
1999-10-05 21:33:18 +00:00

12 lines
146 B
ObjectPascal

function test : string;
begin
test:='This should not be printed';
exit('this should be printed');
end;
begin
writeln(test);
end.