Files
clang-p2996/lldb/test/API/commands/expression/import-std-module/array/main.cpp
Raphael Isemann b8338983e6 [lldb] Add std::array to the supported template list of the CxxModuleHandler
Identical to the other patches that add STL containers to the supported
templated list.
2020-12-17 11:47:58 +01:00

12 lines
208 B
C++

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