1namespace ns1 {
2extern void DoSomeStuff();
3}
4
5namespace ns2 {
6extern void DoSomeStuff();
7}
8
9namespace ns3 {
10extern void DoSomeStuff();
11}
12
13namespace ns4 {
14extern void DoSomeStuff();
15}
16
17int main(int argc, char *argv[]) {
18 ns1::DoSomeStuff();
19 ns2::DoSomeStuff();
20 ns3::DoSomeStuff();
21 ns4::DoSomeStuff();
22
23 return 0;
24}
25

source code of lldb/test/API/functionalities/breakpoint/same_cu_name/main.cpp