| 1 | #include <string> |
|---|---|
| 2 | #include <vector> |
| 3 | #include <initializer_list> |
| 4 | |
| 5 | int main () |
| 6 | { |
| 7 | std::initializer_list<int> ili{1,2,3,4,5}; |
| 8 | std::initializer_list<std::string> ils{"1", "2", "3", "4", "surprise it is a long string!! yay!!"}; |
| 9 | |
| 10 | return 0; // Set break point at this line. |
| 11 | } |
| 12 | |
| 13 |
