summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30075-goto.cpp
blob: 4cccfe2cca8c31260010187a89c174c61cad3ea8 (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;
}