]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
new
authorJason Merrill <jason@gcc.gnu.org>
Tue, 3 Aug 1999 11:35:17 +0000 (07:35 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 3 Aug 1999 11:35:17 +0000 (07:35 -0400)
From-SVN: r28468

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

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 (file)
index 0000000..15246c5
--- /dev/null
@@ -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