xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/vector-bool/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <vector>
2 
main(int argc,char ** argv)3 int main(int argc, char **argv) {
4   std::vector<bool> a = {0, 1, 0, 1};
5   return 0; // Set break point at this line.
6 }
7