(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
overload/
ellipsis2.C
// PR c++/60253
// { dg-options "-Wconditionally-supported" }

struct A
{
  ~A();
};

struct B
{
  B(...);
};

B b(0, A());  // { dg-message "pass" }