1 // Bug: We weren't doing the normal replacement of array with pointer
2 // for deduction in the context of a call because of the initializer list.
3 // { dg-do compile { target c++11 } }
5 #include <initializer_list>
16 vector (std::initializer_list<U>);
19 vector<string> v = { "a", "b", "c" };