// PR c++/83227 // { dg-do compile { target c++11 } } #include template struct f { f(std::initializer_list) {} }; struct h {}; struct i : h { i(); }; void foo(f); int main() { foo({i{}}); }