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

A a;