Concept Flow - Strong reference cycles between classes
Create instance A
Create instance B
A holds strong reference to B
B holds strong reference to A
Reference count of A and B > 0
Neither deinit called -> Memory leak
Strong reference cycle detected
Two class instances hold strong references to each other, preventing deallocation and causing a memory leak.