FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / template10.C
blob1706dde2d0189218a55d4e0ca92bf494619d6311
1 // Build don't link:
3 // Copyright (C) 1999 Free Software Foundation
5 // by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
6 // bug report by Martin Sebor <sebor@roguewave.com>
7 // based on C++ Standard example in [temp.expl.spec]/5
9 /* Members of explicitly specialized template classes shall not be
10    defined with template-specialization syntax.  The example in the
11    Standard contains a definition of a member function of the
12    explicitly specialized class template, but the paragraph refers to
13    members in general, not only member functions.  */
15 template<class T> struct A {};
17 template<> struct A<int> {
18   static bool a, b;
21 bool A<int>::a = true; // ok
22 template<> bool A<int>::b = false; // ERROR - XFAIL *-*-*