As others have commented, this appears to be a bug. However, it seems like you are unlikely to encounter this, because it is quite unsafe to force unwrap a dictionary element like that. This works fine:
let dict = ["A": 1, "B": 2, "C": 3]
if
let a = dict["A"],
let b = dict["B"],
let c = dict["C"]
{
let sum = a + b + c
}