xref: /illumos-gate/usr/src/tools/smatch/src/validation/old-initializer.c (revision 44bf619d328827ce5eca6833fcd5c69f1592e578)
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