(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
rfg2.C
// { dg-do assemble  }
// Bug: g++ complains about a class definition containing a const member
// but no constructor; it shouldn't complain at that point, since this is
// valid use.

struct S { const int member; } object = { 0 };