File indexing completed on 2024-05-05 05:41:40

0001 #include <thread>
0002 
0003 void test()
0004 {
0005     std::thread t;
0006     t = std::thread(); // OK
0007 }