aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2000-09-11 14:21:08 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2000-09-11 14:21:08 +0000
commit6cd0d4dedf23a8a6e0b884539f0b70990ed77938 (patch)
tree1cab3f6d0f23e715bc73162356fc225ef41a11ca /gcc
parentf2d71db6232200171b271499f0eeace035ad82cf (diff)
downloadgcc-6cd0d4dedf23a8a6e0b884539f0b70990ed77938.zip
gcc-6cd0d4dedf23a8a6e0b884539f0b70990ed77938.tar.gz
gcc-6cd0d4dedf23a8a6e0b884539f0b70990ed77938.tar.bz2
explicit82.C: New test.
* g++.old-deja/g++.pt/explicit82.C: New test. * g++.old-deja/g++.pt/explicit83.C: New test. From-SVN: r36316
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/explicit82.C18
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/explicit83.C35
3 files changed, 58 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 73b4889..fdd07e0 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
index 0000000..844ff94
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.pt/explicit82.C
@@ -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
index 0000000..dd6e766
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.pt/explicit83.C
@@ -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> > ();