blob: 12150055394e9692c4e9a5d5a389d58db1c2fa15 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <stack>
// void swap(stack& c)
// noexcept(__is_nothrow_swappable<container_type>::value);
// This tests a conforming extension
// UNSUPPORTED: c++98, c++03
#include <stack>
#include <utility>
#include <cassert>
#include "MoveOnly.h"
int main()
{
{
typedef std::stack<MoveOnly> C;
static_assert(noexcept(swap(std::declval<C&>(), std::declval<C&>())), "");
}
}