Avatar
Avatar
omochimetaru
@swift-5.9.2 @swift-5.10.1 @swift-6.0.3 struct Item: Identifiable, Hashable { var id: Int } func fromSetKyome(_ x: Set<Item>) -> [Item] { x.map(\.self) }
exit status: 1 with <stdin>:6:11: error: cannot convert value of type 'WritableKeyPath<_, _>' to expected argument type '(Item) throws -> Item' x.map(\.self) ^ <stdin>:6:11: error: cannot infer key path type from context; consider explicitly specifying a root type x.map(\.self) ^ <#Root#>