Updated the TableGen emitter for the Enhanced
[oota-llvm.git] / test / FrontendC++ / 2009-02-16-CtorNames-dbg.cpp
1 // RUN: %llvmgcc -S -g --emit-llvm %s -o - | grep "\~A"
2 class A {
3   int i;
4 public:
5   A() { i = 0; }
6  ~A() { i = 42; }
7 };
8
9 A a;
10