2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-25 00:21:36 +08:00

sizeof2.C: incorrect specialization of base template is selected

* g++.old-deja/g++.pt/sizeof2.C: incorrect specialization of base
	template is selected

From-SVN: r23468
This commit is contained in:
Alexandre Oliva 1998-10-31 01:54:35 +00:00 committed by Alexandre Oliva
parent 7e0a7fc28e
commit e1a96a5729
2 changed files with 25 additions and 0 deletions
gcc/testsuite
ChangeLog
g++.old-deja/g++.pt

@ -1,5 +1,8 @@
1998-10-31 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.pt/sizeof2.C: incorrect specialization of base
template is selected
* g++.old-deja/g++.ext/arrnew2.C: if new T[n](i) is accepted for
classes, it should be accepted for all types.

@ -0,0 +1,22 @@
// Although template class B is not used at all, it causes the
// incorrect specialization of A to be selected
// Adapted from testcase by Oskar Enoksson <osken393@student.liu.se>
// execution test - XFAIL *-*-*
extern "C" void abort();
template<int N, class T> // Base class
class A { public: static int n() { return sizeof(T); } };
template<int N> // Derived #1
class B: public A<N,char[N]> {};
template<int N, int M> // Derived #2 (wrong!)
class C: public A<N,char[M]> {};
int main() {
if (C<1,2>::n() != 2)
abort();
}