1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-threads
10 // UNSUPPORTED: c++98, c++03, c++11, c++14
16 // Make sure that the implicitly-generated CTAD works.
20 #include "test_macros.h"
22 int main(int, char**) {
25 std::unique_lock
lock(mutex
);
26 ASSERT_SAME_TYPE(decltype(lock
), std::unique_lock
<std::mutex
>);