summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/25_algorithms/fill/35725.cc
diff options
context:
space:
mode:
authorPaolo Carlini <pcarlini@suse.de>2008-03-29 22:38:19 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2008-03-29 22:38:19 +0000
commitb14f95a8d508ec2ba06603392e62d6d508c6c7d1 (patch)
tree437c96e20c1f18a30c72894d13d937e1036ef4b3 /libstdc++-v3/testsuite/25_algorithms/fill/35725.cc
parent3ac0963aeba998c0fce17b9740f7095d6f66c193 (diff)
downloadgcc-b14f95a8d508ec2ba06603392e62d6d508c6c7d1.tar.gz
re PR libstdc++/35725 (ambiguous std::fill with character array)
2008-03-29 Paolo Carlini <pcarlini@suse.de> PR libstdc++/35725 * include/bits/stl_algobase.h (__fill_a(_ForwardIterator, _ForwardIterator, _Tp), __fill_a(_Tp*, _Tp*, _Tp), __fill_n_a(_OutputIterator, _Size, _Tp), __fill_n_a(_Tp*, _Size, _Tp)): Fix signatures. * testsuite/25_algorithms/fill/35725.cc: New. * testsuite/25_algorithms/fill_n/35725.cc: Likewise. From-SVN: r133721
Diffstat (limited to 'libstdc++-v3/testsuite/25_algorithms/fill/35725.cc')
-rw-r--r--libstdc++-v3/testsuite/25_algorithms/fill/35725.cc30
1 files changed, 30 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/25_algorithms/fill/35725.cc b/libstdc++-v3/testsuite/25_algorithms/fill/35725.cc
new file mode 100644
index 00000000000..0c5b0e46cb4
--- /dev/null
+++ b/libstdc++-v3/testsuite/25_algorithms/fill/35725.cc
@@ -0,0 +1,30 @@
+// { dg-do compile }
+
+// Copyright (C) 2008 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 2, 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 COPYING. If not, write to the Free
+// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+// USA.
+
+#include <string>
+#include <vector>
+#include <algorithm>
+
+// libstdc++/35725
+void test01()
+{
+ std::vector<std::string> foo(20);
+ std::fill(foo.begin(), foo.end(), "bar");
+}