llvm-project/lldb/test/API/lang/c/conflicting-symbol/main.c

9 lines
102 B
C

#include "One/One.h"
#include "Two/Two.h"
int main() {
one();
two();
return 0; // break here
}