summaryrefslogtreecommitdiff
path: root/release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp')
-rw-r--r--release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp b/release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
deleted file mode 100644
index b1c54b89d599..000000000000
--- a/release_23/test/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
-
-// The C++ front-end thinks the two foo's are different, the LLVM emitter
-// thinks they are the same. The disconnect causes problems.
-
-void foo() { }
-
-void bar() {
- void foo();
-
- foo();
-}