summaryrefslogtreecommitdiff
path: root/gcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C')
-rwxr-xr-xgcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C32
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C b/gcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C
new file mode 100755
index 0000000..4000070
--- /dev/null
+++ b/gcc_arm/testsuite/g++.old-deja/g++.pt/memtemp29.C
@@ -0,0 +1,32 @@
+// Build don't run:
+// GROUPS passed templates membertemplates
+extern "C" int printf(const char*, ...);
+
+template <class X>
+struct S
+{
+ template <class U>
+ void f(U u);
+
+ template <class U>
+ void g(U U);
+
+ int c[16];
+};
+
+template <class X>
+template <class U>
+void S<X>::f(U u)
+ { printf ("In S::f(U)\n"); g(u); }
+
+template <class X>
+template <class U>
+void S<X>::g(U u)
+ { printf ("In S::g(U)\n"); }
+
+int main()
+{
+ S<char*> s;
+ s.f(3);
+ s.f("adf");
+}