Avatar
Taketo Sano 4/2/2018 6:56 AM
protocol P{} struct A<T> {} extension A: P where T == Int {} extension A: P where T == String {} // error: redundant conformance of 'A<T>' to protocol 'P' 異なる条件でも同じ protocol への conformance はできないんですね…🙍 (edited)