summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/bug_i_663.cpp
blob: 2a473bc7e0a79526ba000c7c346cc800e58c749e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
void test()
{
    switch ( n )
    {
        case 1:
            std::cout << "1";
            break;

        case 2:
            {
                std::cout << "2";
            }
            break;

        case 3:
            { std::cout << "3"; }
            break;
    }
}