aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog4
-rw-r--r--gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C20
2 files changed, 24 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
index 8cf06bf..19d6035 100644
--- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
+++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
@@ -1,3 +1,7 @@
+1999-07-13 Alexandre Oliva <oliva@dcc.unicamp.br>
+
+ * partspec1.C: New test.
+
1999-07-05 Alexandre Oliva <oliva@dcc.unicamp.br>
* typename1.C, typename2.C: New tests.
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C b/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C
new file mode 100644
index 0000000..00942c0
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.oliva/partspec1.C
@@ -0,0 +1,20 @@
+// Build don't link:
+
+// Copyright (C) 1999 Free Software Foundation
+
+// by Alexandre Oliva <oliva@dcc.unicamp.br>
+// simplified from bug report by Andrey Slepuhin <pooh@msu.ru>
+
+template <typename A, int* P> struct X;
+
+int a;
+
+template <typename A>
+struct X<A,&a> {}; // gets bogus error - candidate - XFAIL *-*-*
+
+int b;
+
+template <typename A>
+struct X<A,&b> {}; // gets bogus error - candidate - XFAIL *-*-*
+
+X<int,&a> x; // gets bogus error - ambiguous - XFAIL *-*-*