Avatar
Taketo Sano 4/3/2018 2:18 AM
こうしないと行けない @swiftbot protocol A {} protocol B: A {} protocol C: A {} protocol D: B, C {} struct X<T>: A{} extension X: B where T == Int {} extension X: C where T == Int {} extension X: D where T == Int {}