I know this was discussed on other topics also, what I'm asking is exactly the title of this question.
Is there such case when try/finally the finally won't execute?
try
//some error here
finally
//code that MUST be executed
end;
I'm not talking about how try..except/finally blocks must be used, I'm just asking if this could happen.
LE: Application.Terminate/unplug your computer are particular cases.