]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/stable_partition/requirements/explicit_instantiation/2.cc
c++/modules: Improve diagnostic when redeclaring builtin in module [PR102345]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / stable_partition / requirements / explicit_instantiation / 2.cc
CommitLineData
de196e5d 1// { dg-options "-Wno-deprecated-declarations" }
4f99f3d0 2// { dg-do compile }
7cc9022f 3// { dg-require-effective-target hosted }
4f99f3d0
BK
4
5// 2007-09-20 Benjamin Kosnik <bkoz@redhat.com>
6
a945c346 7// Copyright (C) 2007-2024 Free Software Foundation, Inc.
5837d3c8
JW
8//
9// This file is part of the GNU ISO C++ Library. This library is free
10// software; you can redistribute it and/or modify it under the
11// terms of the GNU General Public License as published by the
748086b7 12// Free Software Foundation; either version 3, or (at your option)
5837d3c8
JW
13// any later version.
14
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19
20// You should have received a copy of the GNU General Public License along
748086b7
JJ
21// with this library; see the file COPYING3. If not see
22// <http://www.gnu.org/licenses/>.
23
5837d3c8 24
4f99f3d0 25#include <algorithm>
6116ca65 26#include <functional>
4f99f3d0 27#include <testsuite_api.h>
5837d3c8 28
4f99f3d0 29namespace std
5837d3c8 30{
4f99f3d0 31 using __gnu_test::NonDefaultConstructible;
5837d3c8 32
4f99f3d0
BK
33 typedef NonDefaultConstructible value_type;
34 typedef value_type* iterator_type;
35 typedef std::pointer_to_unary_function<value_type, bool> predicate_type;
5837d3c8 36
4f99f3d0 37 template iterator_type stable_partition(iterator_type, iterator_type, predicate_type);
de196e5d 38}