(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
initlist-base1.C
// PR c++/66617
// { dg-do compile { target c++11 } }

struct A { };
struct B: virtual A
{
protected:
  B(int, int);
};
struct C: B
{
  C(): B{1,2} {}
};