consider this example:
class Test { static void fun(int i) {} void fun(int i) {} }; int main() { Test t; t.fun(10); //should call non-stat