Avatar
Avatar
shiz
@swift-6.1-dev public protocol EqualById { var id: String { get } } extension EqualById { public static func ==(lhs: EqualById, rhs: EqualById) -> Bool { return lhs.id == rhs.id } }
exit status: 1 with <stdin>:6:24: error: member operator '==' of protocol 'EqualById' must have at least one argument of type 'Self' 4 | 5 | extension EqualById { 6 | public static func ==(lhs: EqualById, rhs: EqualById) -> Bool { | `- error: member operator '==' of protocol 'EqualById' must have at least one argument of type 'Self' 7 | return lhs.id == rhs.id 8 | }