summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30943-Issue_2735.cpp
blob: 3e2924258e757daa51321a4d0d0c6fe5910688bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
void func(int a){
    switch (a)
    {
        case 1:
            ;
        break;

        case 2:
            ;
        break;

        case 3:
        {
            int b = 3;
        }
        break;

        case 4:
        {
            float f = 4.0;
        }
        break;
    }
}