xref: /llvm-project/lldb/test/API/commands/frame/var/direct-ivar/cpp/main.cpp (revision 23ee705ac99aade24cec0ebb8f6c4cfc76bcdb08)
1 struct Structure {
2   int m_field;
funStructure3   void fun() {
4     // check this
5   }
6 };
7 
main()8 int main() {
9   Structure s;
10   s.m_field = 30;
11   s.fun();
12 }
13