Swift - Operators and Expressions
Identify the error in this operator overloading code:
struct Box {
var size: Int
static func + (lhs: Box, rhs: Box) -> Int {
return lhs.size + rhs.size
}
}