aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGenCXX/2004-09-27-CompilerCrash.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp b/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp
deleted file mode 100644
index 5e5af4ab60..0000000000
--- a/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %clang_cc1 -emit-llvm %s -o -
-
-struct Pass {} ;
-template<typename PassName>
-Pass *callDefaultCtor() { return new PassName(); }
-
-void foo(Pass *(*C)());
-
-#include <string>
-
-bool foo(std::string &X) {
- return X.empty();
-}