il.cpp 179 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 namespace std { template <typename T> struct initializer_list { const T *begin, *end; initializer_list(); }; } // namespace std std::initializer_list<int> IL = {1, 2, 3, 4};