blob: 45dcbb303e295b43650ba9f0ede17273eff74a60 [file] [log] [blame]
// PR c++/100963
// { dg-do compile { target c++11 } }
#include <initializer_list>
struct B {
B(int) = delete;
template<class T> B(std::initializer_list<T>);
};
int main() {
B({0});
}