VAX 1649, VS2008, C++, WinXP SP2
Try this
class CTest
{
public:
void foo( int strange ) ;
void bar( int strange )
{
strange = 1 ;
}
};
Now "Rename" the parameter "strange" in parameterlist of "bar" and you can rename also the parameter in method foo. Is this by design or a bug? I would call this a bug.