]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/tools/lldb-mi/symbol/symbol_list_lines_inline_test.h
Vendor import of lldb trunk r321530:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / tools / lldb-mi / symbol / symbol_list_lines_inline_test.h
1 namespace ns
2 {
3 inline int
4 ifunc(int i)
5 { // FUNC_ifunc
6     return i;
7 }
8 struct S
9 {
10     int a;
11     int b;
12     S()
13         : a(3)
14         , b(4)
15     {
16     }
17     int
18     mfunc()
19     { // FUNC_mfunc
20         return a + b;
21     }
22 };
23 extern S s;
24 }