Attempting to find references on class constructors finds all references to the class itself.
Example:
class Test
{
public:
Test();
Test(const Test& source);
explicit Test(int value);
private:
int someData;
};
int main()
{
Test t1;
Test t2(t1);
Test t3(5);
return 0;
}
Attempt to find references on any of the 3 constructors. All "Test" occurrences will be highlighted.