commit ff423279eebaa909e271f4a0f72e23718aec6fe5
Author: Jason Merrill <jason@redhat.com>
Date: Wed Aug 4 16:37:40 2010 +0200
* include/std/thread: Add deleted thread(thread&).
@@ -123,6 +123,7 @@ namespace std
public:
thread() = default;
+ thread(thread&) = delete;
thread(const thread&) = delete;
thread(thread&& __t)
@@ -27,13 +27,7 @@ void test01()
// copy
typedef std::thread test_type;
test_type t1;
- test_type t2(t1); // { dg-error "deleted" "" { xfail *-*-* } }
+ test_type t2(t1); // { dg-error "deleted" }
}
-// This is failing for the wrong reason; it should fail because we're
-// trying to call the deleted copy constructor, but instead it fails
-// because we try to call the thread(_Callable&&,_Args&&...) constructor
-// and fail because thread isn't callable. But that's OK for now.
-// { dg-error "" "" { target *-*-* } 30 }
-
// { dg-prune-output "include" }