Avatar
@swift-5.9.2 func `do`(_ c: () -> ()) { c() } func f() { defer { `do` { print("defer:", value) } } let value = 42 } f()