about summary refs log tree commit diff homepage
path: root/test/CXX/Trivial.cpp
blob: 2b8ceed36cb9a9c13fe73a2054cd9d8c4cb854a4 (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
// RUN: %llvmgxx %s -emit-llvm -O0 -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --no-output --exit-on-error %t1.bc

#include <cassert>

class Test {
  int x;

public:
  Test(int _x) : x(_x) {}
  ~Test() {}

  int getX() { return x; }
};

int main() {
  Test rt(2);
  
  assert(rt.getX()==2);

  return 0;
}