summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/breakpoint/same_cu_name/main.cpp
blob: 43d9e3271ece2a21fd16adc2b3d86334cc44fb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace ns1 {
extern void DoSomeStuff();
}

namespace ns2 {
extern void DoSomeStuff();
}

namespace ns3 {
extern void DoSomeStuff();
}

namespace ns4 {
extern void DoSomeStuff();
}

int main(int argc, char *argv[]) {
  ns1::DoSomeStuff();
  ns2::DoSomeStuff();
  ns3::DoSomeStuff();
  ns4::DoSomeStuff();

  return 0;
}