xref: /llvm-project/lldb/test/API/lang/cpp/modules-import/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "Foo.h"
2 
main(int argc,char ** argv)3 int main(int argc, char **argv) {
4   Foo foo;
5   // break here.
6   return 0;
7 }
8