*** empty log message ***
authorMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 22 Apr 1998 21:02:15 +0000 (21:02 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 22 Apr 1998 21:02:15 +0000 (21:02 +0000)
From-SVN: r19379

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

diff --git a/gcc/testsuite/g++.old-deja/g++.pt/expr5.C b/gcc/testsuite/g++.old-deja/g++.pt/expr5.C
new file mode 100644 (file)
index 0000000..4cb5078
--- /dev/null
@@ -0,0 +1,10 @@
+// Build don't link:
+
+template <class T, int i>
+struct S1;
+
+template <class T, int i, int j>
+struct S2
+{
+  typedef typename S1<T, (i >= j ? 0 : 1) >::type type;
+};
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec17.C b/gcc/testsuite/g++.old-deja/g++.pt/spec17.C
new file mode 100644 (file)
index 0000000..3e3dd63
--- /dev/null
@@ -0,0 +1,44 @@
+// Build don't link:
+
+template<class T>
+struct Foo { };
+
+template<class T1, class T2>
+struct BT { };
+
+template<class T1, class T2>
+struct BT< Foo<T1>, Foo<T2> > { static const int i = 1; };
+
+template<class T1, class T2>
+struct BT< T1, Foo<T2> > { static const int i = 2; };
+
+template<class T1, class T2>
+struct BT< Foo<T1>, T2 > { static const int i = 3; };
+
+template<class T1, class T2>
+int foo(Foo<T1>, Foo<T2>)
+{
+  return 1;
+}
+
+template<class T1, class T2>
+int foo(T1, Foo<T2>)
+{
+  return 2;
+}
+
+template<class T1, class T2>
+int foo(Foo<T1>, T2)
+{
+  return 3;
+}
+
+void f()
+{
+  BT< double, Foo<int> >::i;
+  BT< Foo<int>, Foo<int> >::i;
+  BT< Foo<int>, float >::i;
+  foo(1.0, Foo<int>());
+  foo(Foo<int>(), Foo<int>());
+  foo(Foo<int>(), 1.0);
+}