Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: gcc/gcc/testsuite/g++.dg/template/spec8.C

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/template/spec16.C ('k') | gcc/gcc/testsuite/g++.dg/template/typedef19.C » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/g++.dg/template/spec8.C
diff --git a/gcc/gcc/testsuite/g++.dg/template/spec8.C b/gcc/gcc/testsuite/g++.dg/template/spec8.C
index 26d207b81315565b47f18bbfbf089dd936854a70..ccbf17c2f769731f29b0d37f05cbf0415571d8c6 100644
--- a/gcc/gcc/testsuite/g++.dg/template/spec8.C
+++ b/gcc/gcc/testsuite/g++.dg/template/spec8.C
@@ -5,7 +5,12 @@
template<class T1> struct A
{
template<class T2> struct B {};
+ template<class T2> struct C {};
};
-template <> template <> struct A<int>::B<int> {};
-template <> template <class U> struct A<int>::B {}; // { dg-error "specialization" }
+template <> template <> struct A<int>::B<int>;
+template <> template <class U> struct A<int>::B {};
+A<int>::B<int> ab; // { dg-error "incomplete" }
+
+A<int>::C<char> ac;
+template <> template <class U> struct A<int>::C {}; // { dg-error "specialization" }
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/template/spec16.C ('k') | gcc/gcc/testsuite/g++.dg/template/typedef19.C » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698