llvm-6502/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp

15 lines
247 B
C++
Raw Normal View History

// RUN: %llvmgxx %s -S -o /dev/null
// This is PR421
struct Strongbad {
Strongbad(const char *str );
~Strongbad();
operator const char *() const;
};
void TheCheat () {
Strongbad foo(0);
Strongbad dirs[] = { Strongbad(0) + 1};
}