Given the following definition
class CMyClass
{
public:
enum ETest
{
DISABLED,
ENABLED
};
And the following usage
CMyClass::ETest Test = CMyClass::ETest::DISABLED;
in version 1940, "Find References" (and "Rename") cannot find the usage from the definition or vice versa. From usage other uses are found though, and "Go To Implementation" also works fine.
This seems liike a minor bug.