aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-10-17 17:25:17 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2005-10-17 17:25:17 +0000
commit61e71a9e5e6c268d7c9ad25c6bec24829045de63 (patch)
tree5055e39b8fa5c9ba880cc4f3b2854285492cc5a7 /gcc/testsuite/g++.dg
parent7010f39ea6c659080e9aaf7327585a58f4d1a666 (diff)
downloadgcc-61e71a9e5e6c268d7c9ad25c6bec24829045de63.zip
gcc-61e71a9e5e6c268d7c9ad25c6bec24829045de63.tar.gz
gcc-61e71a9e5e6c268d7c9ad25c6bec24829045de63.tar.bz2
re PR c++/24386 (wrong virtual function called in template member)
cp: PR c++/24386 * cp-tree.h (BASELINK_QUALIFIED_P): New. * pt.c (tsubst_copy_and_build): <CALL_EXPR case>: Use it. * typeck.c (finish_class_member_access_expr): Set it. testsuite: PR c++/24386 * g++.dg/template/overload7.C: New. From-SVN: r105507
Diffstat (limited to 'gcc/testsuite/g++.dg')
-rw-r--r--gcc/testsuite/g++.dg/template/overload7.C31
1 files changed, 31 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/overload7.C b/gcc/testsuite/g++.dg/template/overload7.C
new file mode 100644
index 0000000..28bd16c
--- /dev/null
+++ b/gcc/testsuite/g++.dg/template/overload7.C
@@ -0,0 +1,31 @@
+// { dg-do run }
+
+// Copyright (C) 2005 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 17 Oct 2005 <nathan@codesourcery.com>
+
+// PR 24386:Wrong virtual function called
+// Origin: Scott Snyder snyder@fnal.gov
+
+struct A
+{
+ virtual int Foo () { return 1; }
+};
+struct B : public A
+{
+ virtual int Foo () { return 2; }
+};
+
+template <class T>
+int Bar (T *a)
+{
+ if (static_cast<A*>(a)->A::Foo () != 1)
+ return 1;
+ if (static_cast<A*>(a)->Foo () != 2)
+ return 2;
+ return 0;
+}
+
+int main ()
+{
+ return Bar (new B);
+}