1 // { dg-do compile { target c++11 } }
2 
3 #include <initializer_list>
4 
5 auto value = std::initializer_list<int>{ 1, 2, 3 };
6