[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / thread / thread.threads / thread.thread.class / thread.thread.constr / default.pass.cpp
blob9e0c50df7c6b3d029e414e3d58800e8968712c23
1 //===----------------------------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // UNSUPPORTED: no-threads
11 // <thread>
13 // class thread
15 // thread();
17 #include <thread>
18 #include <cassert>
20 #include "test_macros.h"
22 int main(int, char**)
24 std::thread t;
25 assert(t.get_id() == std::thread::id());
27 return 0;