1 // { dg-do compile { target c++17 } }
2 
3 #include <initializer_list>
4 template <class T>
5 struct A
6 {
7   A (std::initializer_list<T>);
8 };
9 
10 A a{1,2};
11 
12