aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr85244-2.c
blob: d57cb71242024efcd14e92e075f7b4a515856f21 (plain)
1
2
3
4
5
6
7
8
struct s {
    long a;
    int b;
    int tab[];
};

int idx = 1;
const struct s val = { 0, 0, { 42, 1337 } };