void main() {
    int a = 3;
    int b = 4;
    int c = 2 + 4;
    int d = c + 0;
    c = 1 + 4;
    {
        int a = 5;
        int b = 6;
        test(a);
        test(b);
    }
    {
        int c = 7;
        test(c);
        test(d);
    }
    test(a);
    test(b + 10);
    test(c);
    test(d);
}