aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/old-initializer.c
blob: 48aeeaabd0469b2dc1db2ff2645f462ca3a0024a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct s {
	int i;
};

static struct s the_s = { i: 1 };
/*
 * check-name: Old initializer
 *
 * check-error-start
old-initializer.c:5:27: warning: obsolete struct initializer, use C99 syntax
 * check-error-end
 */