// PR c++/89144 // { dg-do link { target c++11 } } #include template void b() { static constexpr std::initializer_list c{ 42 }; constexpr std::initializer_list l { }; } int main() { b(); }