SUPER+R window is failing to show definitions inside a class.
When I open the SUPER+R window, no symbols inside Test1 are shown. Symbols for Test2 are shown properly.
class Test1 : public Super1, public Super2
{
void function();
};
class Test2 : public Super1
{
void function();
};