diff options
author | Alexandre Oliva <oliva@lsd.ic.unicamp.br> | 1999-12-22 04:52:11 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-12-22 04:52:11 +0000 |
commit | 200a1a6df3c6861070393529b2b12824134b9591 (patch) | |
tree | 88ff46be33bc8ce80d667e55995f2f8a47c31e64 /gcc | |
parent | f9f1f4a6515ccf59e4cb0e37cc07b79a4e4492ed (diff) | |
download | gcc-200a1a6df3c6861070393529b2b12824134b9591.zip gcc-200a1a6df3c6861070393529b2b12824134b9591.tar.gz gcc-200a1a6df3c6861070393529b2b12824134b9591.tar.bz2 |
* template10.C: New test.
From-SVN: r31062
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.oliva/template10.C | 22 |
2 files changed, 26 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog index 9d636f9..274b850 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog +++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog @@ -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. diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/template10.C b/gcc/testsuite/g++.old-deja/g++.oliva/template10.C new file mode 100644 index 0000000..2ee3934 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.oliva/template10.C @@ -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 *-*-* |