#include <future>    // for async.
#include <cstdio>	// for printf.
#include <exception>	// for exception.

int main()
{
	try
	{
		std::async([]{}).wait();
	}
	catch(std::exception const &ex)
	{
		std::printf(">%s\n", ex.what());
	}
}
