From 80efc5073d4f76471cc7fdc41e2a33a213a86baf Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 3 Jan 2017 13:31:26 +0000 Subject: Add deleted std::thread(const thread&&) constructor PR libstdc++/78956 * include/std/thread (thread(const thread&&)): Add deleted constructor. * testsuite/30_threads/thread/cons/lwg2097.cc: New test. From-SVN: r244022 --- .../testsuite/30_threads/thread/cons/lwg2097.cc | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc (limited to 'libstdc++-v3/testsuite/30_threads/thread/cons') diff --git a/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc b/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc new file mode 100644 index 00000000000..165c6496b6e --- /dev/null +++ b/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc @@ -0,0 +1,29 @@ +// { dg-do compile { target c++11 } } +// { dg-require-cstdint "" } +// { dg-require-gthreads "" } + +// Copyright (C) 2017 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 +// . + +#include + +using std::thread; +using std::is_constructible; + +static_assert( !is_constructible::value, "" ); +static_assert( !is_constructible::value, "" ); +static_assert( !is_constructible::value, "" ); -- cgit v1.2.1