Swift - Control Flow
Identify the error in this Swift switch statement using value binding:
let number = 5
switch number {
case let x where x > 0:
print("Positive")
case let x where x < 0:
print("Negative")
case x == 0:
print("Zero")
}