aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1999-08-03 07:35:17 -0400
committerJason Merrill <jason@gcc.gnu.org>1999-08-03 07:35:17 -0400
commita22b75d3f2e179f46175d89d717dc52d1f40e5bb (patch)
treec4e321aaa5bdd7be0f606fd8ddcb9eb754a0f6bc /gcc
parent074917ba5c63df7b0eaea25715f2cadf20da9e24 (diff)
downloadgcc-a22b75d3f2e179f46175d89d717dc52d1f40e5bb.zip
gcc-a22b75d3f2e179f46175d89d717dc52d1f40e5bb.tar.gz
gcc-a22b75d3f2e179f46175d89d717dc52d1f40e5bb.tar.bz2
new
From-SVN: r28468
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memtemp84.C18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp84.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp84.C
new file mode 100644
index 0000000..15246c5
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.pt/memtemp84.C
@@ -0,0 +1,18 @@
+// Build don't link:
+
+// Copyright (C) 1999 Free Software Foundation
+
+// by Alexandre Oliva <oliva@dcc.unicamp.br>
+// simplified from bug report by redleaf <e1wwater@dingo.cc.uq.edu.au>
+
+struct B {
+ template <class> void bar();
+} b;
+
+template <class T> void foo() {
+ b.bar<T>(); // gets bogus error - bar undeclared
+ b.template bar<T>(); // gets bogus error - ditto
+ b.B::bar<T>();
+}
+
+template void foo<void>(); // gets bogus error