Avatar
Avatar
Iceman
@swift-6.0.3 struct S { var talk: (Bool) -> Void = { _ in print("property") } func talk(_: Bool) { print("function") } } let aa = S() aa.talk(true)
property