2004-05-18 05:27:57 +02:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
2017-01-01 13:07:43 +01:00
|
|
|
// Copyright (C) 2004-2017 Free Software Foundation, Inc.
|
2004-05-18 05:27:57 +02:00
|
|
|
//
|
|
|
|
// 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
|
2009-04-09 17:00:19 +02:00
|
|
|
// Free Software Foundation; either version 3, or (at your option)
|
2004-05-18 05:27:57 +02:00
|
|
|
// 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
|
2009-04-09 17:00:19 +02:00
|
|
|
// with this library; see the file COPYING3. If not see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
2004-05-18 05:27:57 +02:00
|
|
|
|
|
|
|
#include <testsuite_hooks.h>
|
|
|
|
#include <set>
|
|
|
|
|
2010-01-04 02:58:21 +01:00
|
|
|
// NB: This issue affected only debug-mode.
|
|
|
|
|
2004-05-18 05:27:57 +02:00
|
|
|
// { dg-do compile }
|
|
|
|
|
|
|
|
// libstdc++/14340
|
|
|
|
int main()
|
|
|
|
{
|
2004-07-05 12:59:42 +02:00
|
|
|
typedef std::set<int> container;
|
2004-05-18 05:27:57 +02:00
|
|
|
__gnu_test::conversion<container>::iterator_to_const_iterator();
|
|
|
|
return 0;
|
|
|
|
}
|