[cfe-commits] r76640 - /cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp

Mike Stump mrs at apple.com
Tue Jul 21 14:03:10 PDT 2009


Author: mrs
Date: Tue Jul 21 16:03:09 2009
New Revision: 76640

URL: http://llvm.org/viewvc/llvm-project?rev=76640&view=rev
Log:
Prep for new warning.

Modified:
    cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp

Modified: cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp?rev=76640&r1=76639&r2=76640&view=diff

==============================================================================
--- cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp (original)
+++ cfe/trunk/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp Tue Jul 21 16:03:09 2009
@@ -17,11 +17,11 @@
 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}}





More information about the cfe-commits mailing list