aboutsummaryrefslogtreecommitdiff
path: root/test/initializer-replace-static-string-wide.c
blob: 867c0d27499437a9a927671609ca98a7e0099ead (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'😃',
};