summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/30_threads/scoped_lock/cons/deduction.cc
blob: 399de7a5ae695c21cc24be2f4906bc6d4d2471a4 (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
// Copyright (C) 2017 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-options "-std=gnu++17" }
// { dg-do compile { target c++1z } }

#include <mutex>

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
test01()
{
  std::scoped_lock l0;
  check_type<std::scoped_lock<>>(l0);

  struct BasicLockable {
    void lock() { }
    void unlock() { }
  } m1;

  std::scoped_lock l1(m1);
  check_type<std::scoped_lock<BasicLockable>>(l1);

  struct Lockable {
    void lock() { }
    void unlock() { }
    bool try_lock() { return true; }
  } m2;

  std::mutex m3;
  std::scoped_lock l2(m2, m3);
  check_type<std::scoped_lock<Lockable, std::mutex>>(l2);
}