File indexing completed on 2025-07-13 05:07:27

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