1#include <array>
2
3struct DbgInfo {
4 int v = 4;
5};
6
7int main(int argc, char **argv) {
8 std::array<int, 3> a = {3, 1, 2};
9 std::array<DbgInfo, 1> b{DbgInfo()};
10 return 0; // Set break point at this line.
11}
12

source code of lldb/test/API/commands/expression/import-std-module/array/main.cpp