(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
anonunion2.C
template <int i>
struct S
{
  S () { union { int a; }; a = 0; }
};
S<0> s;