xref: /illumos-gate/usr/src/tools/smatch/src/validation/old-initializer.c (revision 3dae5456c609a0bdfeffc8d1c0dc436db6ab3436)
1 struct s {
2 	int i;
3 };
4 
5 static struct s the_s = { i: 1 };
6 /*
7  * check-name: Old initializer
8  *
9  * check-error-start
10 old-initializer.c:5:27: warning: obsolete struct initializer, use C99 syntax
11  * check-error-end
12  */
13