1 // REQUIRES: lldb 2 // UNSUPPORTED: system-windows 3 // 4 // RUN: %dexter --fail-lt 1.0 -w \ 5 // RUN: --builder 'clang' --debugger 'lldb' --cflags "-O0 -glldb" -- %s 6 7 class A { 8 public: 9 A() : zero(0), data(42) { // DexLabel('ctor_start') 10 } 11 private: 12 int zero; 13 int data; 14 }; 15 16 int main() { 17 A a; 18 return 0; 19 } 20 21 22 /* 23 DexExpectProgramState({ 24 'frames': [ 25 { 26 'location': { 27 'lineno': ref('ctor_start') 28 }, 29 'watches': { 30 '*this': {'is_irretrievable': False} 31 } 32 } 33 ] 34 }) 35 */ 36 37