I try to run diagnostic tools in Visual Studio 2015 Community for a test project.
My code:
#include<iostream>
int main()
{
for (;;)
{
std::cout << "Hello, World!";
getchar();
}
return 0;
}
I use x64 platform in configuration Debug. The Window Diagnostic Tools fail unexpectedly, saying the following:
The diagnostic tools failed unexpectedly. The Diagnostic Hub output in the Output window may contain additional information.
Diagnostic Hub:
The scratch directory cannot have a trailing junction point.
What does it mean? How do I correct this error?