summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/bug_i_666.cpp
blob: 00adec8386419d8b797d51797d8dbf6a8841791f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
bool test()
{
    if ( true )
    {
        i = 10;
    }
    else
        if ( true )
        {
            i = 10;
        }
}