The 'Go to symbol definition' functionality works well for the classic way when jumping from a definition from/to a declaration written in the traditional way with the type in front of the function. But it doesn't if the type is 'auto', Example with C++ source file and a header file: `//myfunctions.cpp #include "myfunctions.h" auto myNewFunction()->void{ // do someting; } void myOldFunction(){ // do something; };
//myfunctions.h auto myNewFunction()->void; void myOldFunction(); ` Definition of "myNewFunction" not found.