The features, include [Goto implementation], [Goto declaration] and [Find reference], won't work if the variables are declaration at function parameters, but they work fine on the local, global variables or preprocessors.
As the following sample code, [goto declaration] doesn't work on "para", and [Find reference] will find 0 result.
void hellofunction(int para)
{
para = 0;
}