llvm-mirror/test/FrontendC++/2009-02-16-CtorNames-dbg.cpp
Evan Cheng fab64fcb5d xfail these tests for now.
llvm-svn: 67143
2009-03-18 00:44:45 +00:00

12 lines
145 B
C++

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