]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/forward_list/requirements/dr438/insert_neg.cc
hashtable.h: Fold in include/tr1_impl/hashtable.h contents.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / forward_list / requirements / dr438 / insert_neg.cc
CommitLineData
52a64bd3 1// { dg-do compile }
439a0f5a 2// { dg-options "-std=gnu++0x" }
ab65a4c7 3// { dg-error "no matching" "" { target *-*-* } 1197 }
439a0f5a 4// { dg-excess-errors "" }
52a64bd3 5
0462fd5e 6// Copyright (C) 2009, 2010 Free Software Foundation
52a64bd3
PC
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
748086b7 11// Free Software Foundation; either version 3, or (at your option)
52a64bd3 12// any later version.
439a0f5a 13
52a64bd3
PC
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
439a0f5a 18
52a64bd3 19// You should have received a copy of the GNU General Public License along
748086b7
JJ
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
52a64bd3 22
439a0f5a
BK
23#include <forward_list>
24
25struct A
26{
27 explicit A(int) { }
28};
52a64bd3 29
439a0f5a
BK
30void f()
31{
32 typedef std::forward_list<A> test_type;
33 test_type l;
34 l.insert_after(l.begin(), 10, 1);
35}