Swift - Operators and Expressions
Identify the error in the following Swift code:
class Bird {}
let b1 = Bird()
let b2 = Bird()
if b1 == b2 {
print("Same bird")
}