blob: c1d1c375448c647051c4a802c8aada14faa52202 [file] [log] [blame]
// PR c++/49776
// { dg-do compile { target c++11 } }
struct s
{
int i[1];
template<class... Types>
constexpr s(Types... args)
: i{args...} // { dg-error "cannot convert" }
{ }
};
int main()
{
s test = nullptr;
}