summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/tmplattr1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/ext/tmplattr1.C')
-rw-r--r--gcc/testsuite/g++.dg/ext/tmplattr1.C24
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/ext/tmplattr1.C b/gcc/testsuite/g++.dg/ext/tmplattr1.C
new file mode 100644
index 000000000..111e3441f
--- /dev/null
+++ b/gcc/testsuite/g++.dg/ext/tmplattr1.C
@@ -0,0 +1,24 @@
+// PR c++/24260
+// { dg-do compile { target i?86-*-* x86_64-*-* } }
+// { dg-require-effective-target ilp32 }
+
+#define stdcall __attribute__((stdcall))
+
+struct T {
+ template <class S>
+ static int stdcall func(int arg1, int arg2);
+};
+
+template <class S>
+int stdcall T::func(int arg1, int arg2)
+{
+ return arg1+arg2;
+}
+
+struct dummy {};
+
+void xx()
+{
+ int (stdcall *ptr2)(int,int) = &T::func<dummy>;
+}
+