Hello,
The goto declaration (Alt+G) fails if there is a using of the base class constructor. The goto declaration goes to the using statement instead of the base class declaration.
Here is a small snippet:
class Base
{};
class Derived : public Base
{
using Base::Base;
};
- Put your cursor on the "Base" of "public Base"
- Press Alt+G
Cursor before goto:
Cursor after goto: