What is printed by this `if let` shadowing example?let value: Int? = 10 if let value = value { print(value + 1) }