OSDN Git Service

* g++.old-deja/g++.pt/explicit82.C: New test.
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Sep 2000 14:21:08 +0000 (14:21 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Sep 2000 14:21:08 +0000 (14:21 +0000)
* g++.old-deja/g++.pt/explicit83.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36316 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.pt/explicit82.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.pt/explicit83.C [new file with mode: 0644]

index 73b4889..fdd07e0 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.pt/explicit82.C: New test.
+       * g++.old-deja/g++.pt/explicit83.C: New test.
+
 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
 
        * gcc.dg/asm-names.c: New test.
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit82.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit82.C
new file mode 100644 (file)
index 0000000..844ff94
--- /dev/null
@@ -0,0 +1,18 @@
+// Build don't link:
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 7 Sep 2000 <nathan@codesourcery.com>
+
+// Bug 508. We failed to set/clear lastiddecl appropriately for
+// operator names.
+
+struct A {};
+
+template <typename N> void foo (A, int);
+template <typename N> void operator<< (A, int);
+
+int main()
+{ 
+        A a;
+        operator<< <bool>(a, 0); 
+        foo <bool>(a, 0); 
+}
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit83.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit83.C
new file mode 100644 (file)
index 0000000..dd6e766
--- /dev/null
@@ -0,0 +1,35 @@
+// Build don't link:
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 7 Sep 2000 <nathan@codesourcery.com>
+
+// Bug 512. Conversion operator functions in template_id's were always
+// being looked up in global scope.
+
+class C
+{
+public:
+
+  template <typename T>
+  void f () {}
+
+  template<typename T>
+  operator int ()
+  { return 0;
+  }
+};
+
+template void C::f <int>();
+
+template C::operator int<float> ();
+
+template C::operator int<double> ();
+
+typedef int (C::* ptrmem_t) ();
+
+template<ptrmem_t U, ptrmem_t V>
+void foo ()
+{
+}
+
+template void 
+foo<&C::operator int<float>, &C::operator int<double> > ();