diff options
| author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-08 21:01:14 +0000 |
|---|---|---|
| committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-08 21:01:14 +0000 |
| commit | e973c78ecb08920159babf9c14d5405bc9ec28fd (patch) | |
| tree | 33cae8c916152de48d116ff24d515a45580a560e /libstdc++-v3/testsuite/20_util/function_objects | |
| parent | a240d038208d9de63e2b762f8d9add6130bbc73d (diff) | |
| download | ppe42-gcc-e973c78ecb08920159babf9c14d5405bc9ec28fd.tar.gz ppe42-gcc-e973c78ecb08920159babf9c14d5405bc9ec28fd.zip | |
PR libstdc++/55908
* include/std/functional (_Mem_fn::operator()): Fix constraints to
avoid ambiguity.
* testsuite/20_util/function_objects/mem_fn/55908.cc: New.
* testsuite/20_util/bind/ref_neg.cc: Adjust dg-error line numbers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195035 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/20_util/function_objects')
| -rw-r--r-- | libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55908.cc | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55908.cc b/libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55908.cc new file mode 100644 index 00000000000..7bbdb3474d0 --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55908.cc @@ -0,0 +1,34 @@ +// { dg-options "-std=gnu++11" } +// { dg-do compile } + +// Copyright (C) 2013 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +// PR libstdc++/55908 calling const member function via const pointer + +#include <functional> + +struct foo +{ + void f(int) const { } + + void g() const + { + auto mf = std::mem_fn(&foo::f); + mf(this, 1); + } +}; |

