Test 'finally' block compiler.
ステータスチェックはすべて成功しました
The build was successful.

このコミットが含まれているのは:
2019-06-04 07:39:30 +02:00
コミット 84b5fd2717

ファイルの表示

@@ -24,6 +24,8 @@ class Program {
throw new NewException("Catch me once", 1);
} catch(Exception $e) {
ExceptionHandler::handleException($e);
} finally {
print("Called finally block 1\n");
}
throw new Exception("Catch me twice", 2);
}