38 lines · cpp
1// REQUIRES: lldb2// UNSUPPORTED: system-windows3//4// RUN: %clang++ -std=gnu++11 -O0 -glldb %s -o %t5// RUN: %dexter --fail-lt 1.0 -w \6// RUN: --binary %t %dexter_lldb_args -- %s7 8class A {9public:10 A() : zero(0), data(42) { // DexLabel('ctor_start')11 }12private:13 int zero;14 int data;15};16 17int main() {18 A a;19 return 0;20}21 22 23/*24DexExpectProgramState({25 'frames': [26 {27 'location': {28 'lineno': ref('ctor_start')29 },30 'watches': {31 '*this': {'is_irretrievable': False}32 }33 }34 ]35})36*/37 38