File indexing completed on 2026-02-01 05:34:50

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