]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/list/modifiers/insert/25288.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / list / modifiers / insert / 25288.cc
CommitLineData
2b3fc9df 1// { dg-require-time "" }
2
f1717362 3// Copyright (C) 2005-2016 Free Software Foundation, Inc.
24146a8d 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
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
24146a8d 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
c68c6d54 12// but WITHOUT ANY WARRANTY; without even the implied warranty of
24146a8d 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
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
24146a8d 19
2b3fc9df 20#include "25288.h"
24146a8d 21#include <list>
24146a8d 22
23int main()
24{
2b48700a 25 typedef int value_type;
0bab73e9 26 typedef __gnu_cxx::throw_allocator_random<value_type> allocator_type;
2b48700a 27 typedef std::list<value_type, allocator_type> list_type;
28
29 insert1<list_type>();
24146a8d 30 return 0;
31}