ultimatepp/autotest/ThreadExitAllocator/ThreadExitAllocator.cpp
cxl ba61d6282e .autotest, upphub.root
git-svn-id: svn://ultimatepp.org/upp/trunk@15542 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-11-29 14:59:03 +00:00

15 lines
215 B
C++

#include <Core/Core.h>
using namespace Upp;
String text;
CONSOLE_APP_MAIN
{
Thread t;
t.Run([] {
text = "This is just a test of thread shutdown";
});
t.Wait();
DDUMP(text);
}