blob: 43045893fe07506f3ae451929f97d660eaa019e9 [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.
//
//===----------------------------------------------------------------------===//
// <queue>
// queue()
// noexcept(is_nothrow_default_constructible<container_type>::value);
// This tests a conforming extension
// UNSUPPORTED: c++98, c++03
#include <queue>
#include <cassert>
#include "test_macros.h"
#include "MoveOnly.h"
int main()
{
{
typedef std::queue<MoveOnly> C;
LIBCPP_STATIC_ASSERT(std::is_nothrow_default_constructible<C>::value, "");
}
}