ce599fdf1d
Use obj/lint1 testX.c /dev/null to test. We don't descend here or provide any test infrastructure yet.
11 lines
159 B
C
11 lines
159 B
C
/* C99 struct initialization */
|
|
struct {
|
|
int i;
|
|
char *s;
|
|
} c[] = {
|
|
{ .i = 2, },
|
|
{ .s = "foo" },
|
|
{ .i = 1, .s = "bar" },
|
|
{ .s = "foo", .i = -1 },
|
|
};
|