fpc/tests/webtbs/tw38833.pp
Jonas Maebe 9977889f4a * fix finally block getting unconditionally removed if try-block is empty
(hasnocode(nil) always returns true). Regression from r48174

git-svn-id: trunk@49305 -
2021-05-01 09:28:58 +00:00

19 lines
299 B
ObjectPascal

program EmptyTryFinally1;
{$mode delphi}
{$apptype console}
var
finallyrun: boolean;
begin
finallyrun:=false;
try
// Empty try statement block
finally
WriteLn('I should actually visible . . .'); // but I'm not
finallyrun:=true;
end;
if not finallyrun then
halt(1);
end.