summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/c99/data/designatedInitializer.2.c
blob: cf2d84f5a3bce4fc7e40723123cff1d8ea08ff42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct xyz {
    int a;
    int b;
    int c;
} klm = { .a = 99, .c = 100 };
struct a {
    struct b {
        int c;
        int d;
    } e;
    float f;
} g = {.e.c = 3 };