blob: a0b27cca5173444456cbb8a9a4c064af65519be3 [file] [log] [blame]
#include <thread>
int main()
{
std::thread t([](){});
t.join();
return 0;
}