You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
477 B
37 lines
477 B
// REQUIRES: lldb
|
|
// UNSUPPORTED: system-windows
|
|
//
|
|
// RUN: %dexter --fail-lt 1.0 -w \
|
|
// RUN: --builder 'clang' --debugger 'lldb' --cflags "-O0 -glldb" -- %s
|
|
|
|
class A {
|
|
public:
|
|
A() : zero(0), data(42) { // DexLabel('ctor_start')
|
|
}
|
|
private:
|
|
int zero;
|
|
int data;
|
|
};
|
|
|
|
int main() {
|
|
A a;
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*
|
|
DexExpectProgramState({
|
|
'frames': [
|
|
{
|
|
'location': {
|
|
'lineno': 'ctor_start'
|
|
},
|
|
'watches': {
|
|
'*this': {'is_irretrievable': False}
|
|
}
|
|
}
|
|
]
|
|
})
|
|
*/
|
|
|