When using goto, all overloads for given function are currently offered. I would prefer if Goto would directly jump to the overload corresponding to the context. This would be especially important if http://forum.wholetomato.com/forum/topic.asp?TOPIC_ID=2398 is implemented.
Example:
class A
{
void Function(){} // variant 0
void Function(int a){} // variant 1
void Function(int a, int b){} // variant 2
};
int main()
{
A a;
a.Function(0,1); /// Goto should jump to variant 2 when used on a.Function here
}