blob: 3b2ac187c8864048c55e0b6c8af7ad2687b1d893 [file] [log] [blame]
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};