// Test for message: GCC style struct or union member name in initializer [315]
/* lint1-flags: -Sw -X 351 */
struct point {
int x, y;
} p = {
/* expect+1: warning: GCC style struct or union member name in initializer [315] */
x: 3,
/* expect+1: warning: GCC style struct or union member name in initializer [315] */
y: 4,
};