I wasn't able to reproduce your problem using VA 1738 and VS 2008 SP1.
What operation system and Visual Studio version do you use?
Can you please go to:
VA Options -> System Info -> Copy Info
and paste the details (from the clipboard) into this thread. This will give us the basic information about your setup.
Also, can you please create a new win32 test project, and try this extremely simly code snippet to see if you can reproduce the problem with it:
class cTest {
void Method(float lklklk)
{
}
void Method(int apple)
{
}
};
void Func()
{
cTest obj;
obj.Method // press ( here
}