aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp
blob: 7d9882763796512dcae5fe73fe2d873f2ebb8720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgcc -S -g --emit-llvm %s -o - | grep "\~A"
// RUN: %llvmgcc -S -g --emit-llvm %s -o - | not grep comp_ctor
// RUN: %llvmgcc -S -g --emit-llvm %s -o - | not grep comp_dtor
class A {
  int i;
public:
  A() { i = 0; }
 ~A() { i = 42; }
};

A a;