Goto Definition works on usual methods like `someFunc()` ``` func someFunc(){ } ``` but don't work on method receiver: `someStruct.someOtherFunc()` where `someOtherFunc` is defined ``` func (someStruct SomeStruct) someOtherFunc() { } ```