// PR c++/57947 // { dg-options "-std=c++98" } namespace std { template class initializer_list {}; template struct D { D(initializer_list) {} }; D<0> d {1, 2, 3}; // { dg-error "constructor|no matching" } // { dg-warning "initializer list" "" { target *-*-* } 8 } }