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> {
21 bool A<int>::a = true; // ok
22 template<> bool A<int>::b = false; // { dg-error "template (header|variable)" }