[RISCV] Remove old FIXMEs from test. NFC
[llvm-project.git] / cross-project-tests / debuginfo-tests / dexter-tests / ctor.cpp
bloba9b3e3869218361ed85a6e18a4a1ac23a3cf49f9
1 // REQUIRES: lldb
2 // UNSUPPORTED: system-windows
3 //
4 // RUN: %clang -std=gnu++11 -O0 -glldb %s -o %t
5 // RUN: %dexter --fail-lt 1.0 -w \
6 // RUN: --binary %t --debugger 'lldb' -- %s
8 class A {
9 public:
10 A() : zero(0), data(42) { // DexLabel('ctor_start')
12 private:
13 int zero;
14 int data;
17 int main() {
18 A a;
19 return 0;
24 DexExpectProgramState({
25 'frames': [
27 'location': {
28 'lineno': ref('ctor_start')
30 'watches': {
31 '*this': {'is_irretrievable': False}