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