Remove trailing whitespace
[oota-llvm.git] / test / C++Frontend / 2003-09-30-NestedFunctionDecl.cpp
index ed7c871a667074ac6aff01a4ea59d14367f16bc1..b1c54b89d5994d63caf5b08fa6841d8281ca8837 100644 (file)
@@ -1,12 +1,12 @@
 // 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 
+// 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();
 }