1struct A {
2public:
3 static int getStaticValue() { return 5; }
4 int getMemberValue() { return a; }
5 int a;
6};
7
8int main()
9{
10 A a;
11 a.a = 3;
12 return A::getStaticValue() + a.getMemberValue(); // Break here
13}
14

source code of lldb/test/API/lang/cpp/static_methods/main.cpp