blob: ed147d74895b11ea1623534becbd2516b7681bf1 [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.
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
// UNSUPPORTED: c++98, c++03
// <future>
// class packaged_task<R(ArgTypes...)>
// packaged_task();
#include <future>
#include <cassert>
struct A {};
int main()
{
std::packaged_task<A(int, char)> p;
assert(!p.valid());
}