// PR c++/44157 // { dg-options "-std=c++0x" } #include template void f(T) { } int main() { std::initializer_list a = { 0 }; f(a); f >({ 0 }); }