diff options
author | Mike Stump <mrs@apple.com> | 2009-07-21 21:03:09 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-21 21:03:09 +0000 |
commit | cb077fc8e0d440f024bbdf57983b84b6d658b60b (patch) | |
tree | d5b7ce782357e14f21aea2d8306f56ba74584804 | |
parent | c36541e7bfa69cc63e2668a986bc99117559c545 (diff) |
Prep for new warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76640 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp b/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp index b482955818..399dcc4bed 100644 --- a/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp +++ b/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp @@ -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}} |