blob: d2b6a4b7a4703269412a0fb0416daef3e3c45024 [file] [log] [blame]
// { dg-options "-fnon-call-exceptions" }
struct Ax {
int n, a[];
};
int i = 12345678;
int main() {
static Ax s{456, i};
((s.a[0]) ? (void)0 : (void)0);
}