/* Test for message: struct or union member name in initializer is a C99 feature [313] */
/* lint1-flags: -sw -X 351 */
struct point {
int x, y;
} p = {
/* expect+1: warning: struct or union member name in initializer is a C99 feature [313] */
.x = 3,
/* expect+1: warning: struct or union member name in initializer is a C99 feature [313] */
.y = 4,
};