[1,2,3].reduce(0) { $1 } //=> 3
[1,2,3].reduce(0) { $0 } // error :(
Am I requesting too much from type checker?
Will recent function type proposals resolve the issue?_______________________________________________ swift-evolution mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-evolution
