summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/00424-Issue_3506.c
blob: c3cdd0f87ba7562e2d74fd50d28bd8f2a15b664d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define CONCAT2x(a,b) a ## _ ## b
#define CONCAT2(a,b) CONCAT2x(a,b)

typedef struct S {
	int a;
	int b;
} S;

static const S CONCAT2(foo, bar) = {
	3,
	4
};