xref: /llvm-project/lldb/test/API/lang/c/conflicting-symbol/main.c (revision 10df88de21772ff40818bec7eef6b099ba4279fb)
1 #include "One/One.h"
2 #include "Two/Two.h"
3 
main()4 int main() {
5   one();
6   two();
7   return 0; // break here
8 }
9