llvm-6502/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp
Devang Patel 1236df4aaa Testcase for rev. 64704
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64705 91177308-0d34-0410-b5e6-96231b3b80d8
2009-02-17 00:15:08 +00:00

13 lines
256 B
C++

// 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;