aboutsummaryrefslogtreecommitdiff
path: root/test/initializer-replace-static-string-wide.c
blob: b6c348afbabc147f5c8c33e86f17c0d047985c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
struct {
	unsigned short s[6];
} u = {
	.s = u"aα€😐",
	.s[2] = u'£',
};

struct {
	unsigned s[5];
} U = {
	.s = U"aα€😐",
	.s[3] = U'😃',
};

struct {
	__typeof__(L' ') s[5];
} L = {
	.s = L"aα€😐",
	.s[3] = L'😃',
};