Avatar
@swiftbot class X { init(){} deinit { print("deinit") } } do { let x = X() print(x) } let x = X() print(x) (edited)
🛠 2