xref: /llvm-project/lldb/test/API/lang/cpp/overloaded-functions/static-a.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)

Static()1 static int Static()
2 {
3   return 1;
4 }
5 
CallStaticA()6 int CallStaticA()
7 {
8   return Static();
9 }
10