blob: 45048b747f7a4db16ec9ea6d1204b75a80dc3cdd [file] [log] [blame]
Marshall Clow5f2d5b92013-10-12 22:49:17 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Eric Fiselierfaa9a312015-08-19 04:10:15 +00009
Marshall Clow5f2d5b92013-10-12 22:49:17 +000010// <future>
11
12// class packaged_task<R(ArgTypes...)>
13// template <class F>
14// packaged_task(F&& f);
15// These constructors shall not participate in overload resolution if
16// decay<F>::type is the same type as std::packaged_task<R(ArgTypes...)>.
17
18#include <future>
19#include <cassert>
20
21struct A {};
22typedef std::packaged_task<A(int, char)> PT;
23typedef volatile std::packaged_task<A(int, char)> VPT;
24
25
26int main()
27{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070028 PT p { VPT{} };
Marshall Clow5f2d5b92013-10-12 22:49:17 +000029}