1 //===-- main.cpp --------------------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
11 #include <initializer_list>
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!!"};
18 return 0; // Set break point at this line.