let dict: [String: Int] = .init { [ "a": 2, "b": 3, ] if isFoo { ["c": 5] } }
callAsFunction
let dict = [ "a": 2, "b": 3, ] { if isFoo { ["c": 5] } }