xref: /Universal-ctags/Units/parser-c.r/end-field-of-var.d/input.c (revision f9ae47e46868507996ea06e031a11e951aadda2c)
1 int n [2] = {
2 	1,
3 	2,
4 };
5 
6 
7 int m0 [2] = {
8 	3,
9 	4,
10 }, m1 [3] = {
11 	5,
12 	6,
13 	8,
14 };
15 
16 struct point {
17 	int x, y;
18 };
19 
20 struct point P = {
21 	.x = 1,
22 	.y = 2,
23 };
24