about summary refs log tree commit diff homepage
path: root/test/CXX/StaticConstructor.cpp
blob: d4992ffeeb34e4c7eb5adbbffc6a9285dd7b386b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %llvmgxx %s --emit-llvm -O0 -c -o %t1.bc
// RUN: %klee --libc=klee --no-output --exit-on-error %t1.bc

#include <cassert>

// to make sure globals are initialized
int aGlobal = 21;

class Test {
  int x;

public:
  Test() : x(aGlobal + 1) {}
  ~Test() {}

  int getX() { return x; }
};

Test t;

int main() {
  assert(t.getX()==22);

  return 0;
}