Code:
----
const { /// [1]
        int a = 3;
}

void main()
{
        const { /// [2]
                int b = 4;
        }
}
----

Why is [1] allowed, but not [2]?

Reply via email to