[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 / copy.compile.fail.cpp
blobf0e288b3c19c4d5ff48fcdd8da15a0fd91f11fc2
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 //===----------------------------------------------------------------------===//
9 // <thread>
11 // class thread
13 // thread(const thread&) = delete;
15 #include <thread>
17 int main(int, char**)
19 std::thread t0; (void)t0;
20 std::thread t1(t0); (void)t1;
21 return 0;