summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
blob: 9109a20cb510381b7830aedd4e0b946664a3dc9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- main.cpp --------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include <string>
#include <vector>
#include <initializer_list>

int main ()
{
    std::initializer_list<int> ili{1,2,3,4,5};
    std::initializer_list<std::string> ils{"1","2","3","4","surprise it is a long string!! yay!!"};
    
    return 0; // Set break point at this line.
}