summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/goto.cpp
blob: 0f50d1828c46bc3e704de5516f17e479381f1252 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define x struct z
#define max(a, b) ((a) > (b) ? (a) : (b))

void f()
{
    goto p;
p:
    goto q;
q:
    goto p;
}