Hi all,

by coincidence I started thinking about how to reach a global function that has the same signature as a method. (I know this is bad design but let's leave that aside )

Code:
void test(){};

Class::test(){};

Class::test2()
{
    test(); //calls Class::test() but how can I call the global function?
}
thanks, Jef