summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/call4.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/expr/call4.C')
-rw-r--r--gcc/testsuite/g++.dg/expr/call4.C27
1 files changed, 27 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/expr/call4.C b/gcc/testsuite/g++.dg/expr/call4.C
new file mode 100644
index 000000000..b4f2d60be
--- /dev/null
+++ b/gcc/testsuite/g++.dg/expr/call4.C
@@ -0,0 +1,27 @@
+// { dg-do compile }
+
+// Copyright (C) 2007 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 22 Jul 2007 <nathan@codesourcery.com>
+
+// Origin: Danny Boelens <danny.boelens@artwork-systems.com>
+// PR 32839. Default arguments propagated through the type system to
+// an indirect call.
+
+template<typename T>
+struct TPL
+{
+ enum Whatever {e1, e2};
+
+ static void Quux (int i = e1 | e2);
+};
+
+template <typename F>
+void DoIt (F fun)
+{
+ fun (); // { dg-error "too few arguments" }
+}
+
+void Foo ()
+{
+ DoIt (&TPL<int>::Quux);
+}