I have created an example of what I think is incorrect functionality.
namespace {
// 1) Type the declaration
void MyFunction();
// 2) Right click "MyFunction", and apply the VAX Create Implementation refactoring
}
namespace {
}
// 3) Note that the generated implementation is not in the existing anonymous namespace or wrapped in its own.
void MyFunction()
{
}