Let SomeObject have a member variable _someBlock. SomeObject starts an operation which will cause _someBlock to be executed later. Sometime before the block execution, SomeObject is deallocated.
What happens to _someBlock? Will it be executed or will there be a cascading deallocation causing it to never be executed?