minix/external/bsd/libc++/dist/libcxx/test/thread/futures/futures.tas/futures.task.members/ctor_default.pass.cpp

26 lines
562 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <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());
}