Avatar
@swift-5.2.5 func f(g: @escaping () -> Void) { } class C { var name = "tama" func main() { f { [self] in print(name) } } }