summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30931-indent_var_def_cont.cpp
blob: c505389f6e788f5c983fdd1d07f9aa584d1f675e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int
        a, b, c;

int d,
        e, f;

void bar(void)
{
	struct foobar
	        a = { 'x', 0 };
	struct foobar
	        b = { 'y', 2 },
	        c = { 'z', 4 };
	struct foobar d = { 'y', 2 },
	        e = { 'z', 4 };
}