summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2009-09-04-modify-crash.cpp
blob: 89274e09c7ed2719f8e52cde8e5c958488a5f2f7 (plain)
1
2
3
4
5
6
7
// RUN: %llvmgxx %s -fapple-kext -S -o -
// The extra check in 71555 caused this to crash on Darwin X86
// in an assert build.
class foo {
 virtual ~foo ();
};
foo::~foo(){}