* template10.C: New test.

From-SVN: r31062
This commit is contained in:
Alexandre Oliva 1999-12-22 04:52:11 +00:00 committed by Alexandre Oliva
parent f9f1f4a651
commit 200a1a6df3
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1999-12-22 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* template10.C: New test.
1999-11-21 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* delete2.C, delete3.C, delete4.C, delete5.C: New tests.

View File

@ -0,0 +1,22 @@
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
// bug report by Martin Sebor <sebor@roguewave.com>
// from C++ Standard [temp.expl.spec]/5
/* Members of explicitly specialized template classes shall not be
defined with template-specialization syntax. The example in the
Standard contains a definition of a member function of the
explicitly specialized class template, but the paragraph refers to
members in general, not only member functions. */
template<class T> struct A {};
template<> struct A<int> {
static const bool a, b;
};
const bool A<int>::a; // ok
template<> const bool A<int>::b; // ERROR - bad specialization - XFAIL *-*-*