(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.target/
i386/
pr102295.C
// 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" } } */