diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/overload8.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/overload8.C | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/overload8.C b/gcc/testsuite/g++.old-deja/g++.other/overload8.C new file mode 100644 index 000000000..4615bd848 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/overload8.C @@ -0,0 +1,23 @@ +// { dg-do run } +class a { +public: + int f() { return 0; } + int f() const { return 1; } +}; + +class b : public a { +}; + +int main() +{ + int (b::* ptr1)() = &b::f; + int (b::* ptr2)() const = &b::f; + + b ao; + + if ((ao.*ptr1)() != 0) + return 1; + if ((ao.*ptr2)() != 1) + return 1; +} + |