diff options
Diffstat (limited to 'test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp')
-rw-r--r-- | test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp b/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp deleted file mode 100644 index 94c1199..0000000 --- a/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -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(); -} |