summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/30_threads/packaged_task/cons/deduction.cc
blob: 0eb69763ab985a447242d7af1c21b8e8515728cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// // Copyright (C) 2017-2022 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

// { dg-do compile { target c++17 } }

#include <future>

template<typename T, typename U> struct require_same;
template<typename T> struct require_same<T, T> { using type = void; };

template<typename T, typename U>
  typename require_same<T, U>::type
  check_type(U&) { }

void f0v();
void f0vn() noexcept;
int f0i();
int f0in() noexcept;
long f1l(int&);
long f1ln(double*) noexcept;

void
test01()
{
  std::packaged_task task1{f0v};
  check_type<std::packaged_task<void()>>(task1);

  std::packaged_task task2{f0vn};
  check_type<std::packaged_task<void()>>(task2);

  std::packaged_task task3{f0i};
  check_type<std::packaged_task<int()>>(task3);

  std::packaged_task task4{f0in};
  check_type<std::packaged_task<int()>>(task4);

  std::packaged_task task5{f1l};
  check_type<std::packaged_task<long(int&)>>(task5);

  std::packaged_task task6{f1ln};
  check_type<std::packaged_task<long(double*)>>(task6);

  std::packaged_task task5a{std::move(task5)};
  check_type<std::packaged_task<long(int&)>>(task5a);

  std::packaged_task task6a{std::move(task6)};
  check_type<std::packaged_task<long(double*)>>(task6a);
}

struct X {
  int operator()(const short&, void*);
};

struct Y {
  void operator()(int) const & noexcept;
};

void
test02()
{
  X x;
  std::packaged_task task1{x};
  check_type<std::packaged_task<int(const short&, void*)>>(task1);

  Y y;
  std::packaged_task task2{y};
  check_type<std::packaged_task<void(int)>>(task2);

  std::packaged_task task3{[&x](float) -> X& { return x; }};
  check_type<std::packaged_task<X&(float)>>(task3);
}