sizeof2.C: incorrect specialization of base template is selected
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Sat, 31 Oct 1998 01:54:35 +0000 (01:54 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Sat, 31 Oct 1998 01:54:35 +0000 (01:54 +0000)
* g++.old-deja/g++.pt/sizeof2.C: incorrect specialization of base
template is selected

From-SVN: r23468

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.pt/sizeof2.C [new file with mode: 0644]

index 42417b8..5ea28f5 100644 (file)
@@ -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.
 
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/sizeof2.C b/gcc/testsuite/g++.old-deja/g++.pt/sizeof2.C
new file mode 100644 (file)
index 0000000..fba3ed6
--- /dev/null
@@ -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();
+}