summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/10024-ifcomment.cpp
blob: b41c5c6f750dd3b9fe608dd17f8034b779423d80 (plain)
1
2
3
4
5
6
7
8
9
10
if (true)               // indent_relative_single_line_comments = false
    return;
if (foo)     // true
{
    bar(1);  // action 1
}
else         // false
{
    bar(2);  // action 2
}