1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Regression/C++Frontend/2004-11-27-ExceptionCleanupAssertion.cpp
Chris Lattner 7f5ed97b90 new testcase
llvm-svn: 18290
2004-11-27 22:43:51 +00:00

15 lines
247 B
C++

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