xref: /llvm-project/lldb/test/API/python_api/symbol-context/two-files/file1.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "decls.h"
2 
g()3 int g() {
4   return 1;
5 }
6 
~struct1()7 struct1::~struct1() {
8   int x = g(); // Break1
9 }
10 
f()11 void struct1::f() {}
12 
main()13 int main() {
14   struct1::f();
15   struct2::f();
16 
17   struct1 s1;
18   struct2 s2;
19 
20   return 0;
21 }
22