Проверка состояния в асинхронном методе

Описание вопроса: Я удивлен, что код внутри блока if достигнут. Я предположил, что блок if не будет выполнен.

Я совершенно смущен. Кто может объяснить или научить меня?

private async Task TestMethod()
{
    bool ok = false;
    City city = City.BJ;
    await Task.Delay(100);
    ok = true;

    if (!ok)//Suppose it won't go into this code block. Because variable 'ok' is true.
    {
        if (city == City.BJ)//City is enum type.
        {
            throw new Exception("BJ. Good day.");
        }
        else
        {
            throw new Exception("SH. Rainy day");//This row is reached.Weird! But the upper caller method doesn't detect this exception.
        }
    }
}

enum City
{
    BJ = 1,
    SH = 2
}