summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c
blob: 4dcd443c0492259715959ddb7e8dd3daf1f93824 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "One/One.h"
#include "Two/Two.h"

#include <stdio.h>

int main() {
  one();
  two();
  printf("main\n"); // break here
  return(0); 
}
OpenPOWER on IntegriCloud