diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-04 14:29:13 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-04 14:29:13 +0000 |
commit | 61c059fcd4ddcc849aae31efce0f1a4866c0d04b (patch) | |
tree | 807ab884f6921d74cf6697b2fbd57ce212645768 /libstdc++-v3/testsuite/23_containers/multiset | |
parent | 8289bfc6ebd28a7c9ba0ded84bf9103b590a9597 (diff) | |
download | gcc-61c059fcd4ddcc849aae31efce0f1a4866c0d04b.tar.gz |
2011-06-04 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 174636 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@174639 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/23_containers/multiset')
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_move_construct.cc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_move_construct.cc b/libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_move_construct.cc new file mode 100644 index 00000000000..d200367c261 --- /dev/null +++ b/libstdc++-v3/testsuite/23_containers/multiset/cons/noexcept_move_construct.cc @@ -0,0 +1,27 @@ +// { dg-do compile } +// { dg-options "-std=gnu++0x" } + +// 2011-06-01 Paolo Carlini <paolo.carlini@oracle.com> +// +// Copyright (C) 2011 Free Software Foundation, Inc. +// +// 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 +// Free Software Foundation; either version 3, or (at your option) +// 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 +// with this library; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +#include <set> + +typedef std::multiset<int> mstype; + +static_assert(std::is_nothrow_move_constructible<mstype>::value, "Error"); |