brintos

brintos / llvm-project-archived public Read only

0
0
Text · 179 B · 3b2ac18 Raw
10 lines · cpp
1namespace std {2template <typename T>3struct initializer_list {4  const T *begin, *end;5  initializer_list();6};7} // namespace std8 9std::initializer_list<int> IL = {1, 2, 3, 4};10