guard
let a: Int? = 2 let b: Int? = 3 guard case let a? = a, case let b? = b else { fatalError() } print(a + b) // 5
case let