summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/Issue_2735.cpp
blob: f83e3536250bc22f2e249717ad0978b719701383 (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;
    }
}