Avatar
protocol A { associatedtype B = String func hello() -> B } extension A where B == Int { func hello() -> Int { return 1 } } class C: A { } もっと面白いの