summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/koenig1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/koenig1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/koenig1.C22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/koenig1.C b/gcc/testsuite/g++.old-deja/g++.pt/koenig1.C
new file mode 100644
index 000000000..03b58587c
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.pt/koenig1.C
@@ -0,0 +1,22 @@
+// { dg-do assemble }
+//
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 18 Aug 2000 <nathan@codesourcery.com>
+
+// bug 123. We ICEd when koenig lookup found a COMPONENT_REF inside a
+// TEMPLATE_ID_EXPR.
+
+void foo(void (*f)());
+
+struct A {
+template <int s>
+static void g();
+template <int s>
+void f(); // { dg-error "" } candiate
+
+static void f_plus ()
+ {
+ foo (f<0>); // { dg-error "" } no match
+ foo (g<0>);
+ }
+};