[clang] CTAD alias: Respect explicit deduction guides defined after the first use...
[llvm-project.git] / lldb / test / API / commands / expression / import-std-module / vector-of-vectors / main.cpp
blob158dcf7a5f68012f9db61db156a860991865219e
1 #include <__verbose_abort>
2 #include <vector>
4 // Some expressons from the test need this symbol to be compiled when libcxx is
5 // built statically.
6 void *libcpp_verbose_abort_ptr = (void *)&std::__libcpp_verbose_abort;
8 int main(int argc, char **argv) {
9 std::vector<std::vector<int> > a = {{1, 2, 3}, {3, 2, 1}};
10 return 0; // Set break point at this line.