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

A a;