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