2010-08-30 20:46:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-30 20:46:21 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <future>
|
|
|
|
|
|
|
|
// class packaged_task<R(ArgTypes...)>
|
|
|
|
|
|
|
|
// packaged_task();
|
|
|
|
|
|
|
|
#include <future>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
struct A {};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
std::packaged_task<A(int, char)> p;
|
2010-11-30 21:23:32 +01:00
|
|
|
assert(!p.valid());
|
2010-08-30 20:46:21 +02:00
|
|
|
}
|