diff options
Diffstat (limited to 'test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp')
-rw-r--r-- | test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp b/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp deleted file mode 100644 index f3d225e..0000000 --- a/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// 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}; -} |