let a: Int?? = nil let b: Int? = nil let c = a ?? b // Int?.none let d: Int?? = a ?? b // Int??.some(.none)