6e5fa43a6b9ba6c583cae0f6e65f2fa1175fa639
[openbsd] /
1 //===-- main.cpp --------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include <string>
10 #include <vector>
11 #include <initializer_list>
12
13 int main ()
14 {
15     std::initializer_list<int> ili{1,2,3,4,5};
16     std::initializer_list<std::string> ils{"1","2","3","4","surprise it is a long string!! yay!!"};
17     
18     return 0; // Set break point at this line.
19 }
20