Avatar
@swiftbot protocol Proto { func test() } extension Proto { func test() { print("Proto") } } struct Impl: Proto { func test() { print("Impl") } } let a = Impl() a.test() こういうやつですか?
🛠 1