]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/24_iterators/insert_iterator/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 24_iterators / insert_iterator / 2.cc
CommitLineData
a024740d
BK
1// 2001-06-21 Benjamin Kosnik <bkoz@redhat.com>
2
a5544970 3// Copyright (C) 2001-2019 Free Software Foundation, Inc.
8f407473
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
8f407473
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
8f407473 19
a024740d 20// 24.4.2.5 Template class insert_iterator
8f407473
PC
21
22#include <iterator>
23#include <list>
8f407473 24
a024740d 25void test02()
8f407473 26{
a024740d 27 typedef std::insert_iterator<std::list<int> > iterator_type;
8f407473 28
a024740d
BK
29 std::list<int> li;
30 std::list<int>::iterator liit = li.begin();
31 iterator_type it01(li, liit);
32 iterator_type it02 = std::inserter(li, liit);
567d4027
PC
33 it01 = it01; // Suppress unused warnings.
34 it02 = it02;
8f407473
PC
35}
36
a024740d
BK
37int main()
38{
39 test02();
8f407473
PC
40 return 0;
41}