1struct Structure {
2 int m_field;
3 void fun() {
4 // check this
5 }
6};
7
8int main() {
9 Structure s;
10 s.m_field = 30;
11 s.fun();
12}
13

source code of lldb/test/API/commands/frame/var/direct-ivar/cpp/main.cpp