Prep for new warning.
authorMike Stump <mrs@apple.com>
Tue, 21 Jul 2009 21:03:09 +0000 (21:03 +0000)
committerMike Stump <mrs@apple.com>
Tue, 21 Jul 2009 21:03:09 +0000 (21:03 +0000)
llvm-svn: 76640

clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp

index b482955..399dcc4 100644 (file)
@@ -17,11 +17,11 @@ template<typename T>
 struct MetaFun;
 
 template<typename T>
-  typename MetaFun<T*>::type f0(const T&) { } // expected-note{{previous}}
+  typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}}
 template<class U>
-  typename MetaFun<U*>::type f0(const U&) { } // expected-error{{redefinition}}
+  typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}}
 
 // FIXME: We need canonicalization of expressions for this to work
 // template<int> struct A { };
 // template<int I> void f0(A<I>) { } // Xpected-note{{previous}}
-// template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}}
\ No newline at end of file
+// template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}}