blob: 09efc3c8a86ff162c44c01ca29aba5bc8ba79a0d [file] [log] [blame]
// PR c++/102295
// { dg-do compile { target *-*-linux* } }
// { dg-options "-Wno-pedantic" }
struct S {
int a;
int b[];
} S;
struct S s = { 1, { 2, 3 } };
/* { dg-final { scan-assembler ".size\[\t \]*s, 12" } } */