summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/Issue_3506.c
blob: 30db2976cb20849e098a844bc702d7a9a621c07e (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
};