class E
{
public:
static void f() {};
};
int main()
{
E::f();
E::E::f();
E::E::E::E::f();
}
why is it possible to do this ? It does not work with namespaces.
class E
{
public:
static void f() {};
};
int main()
{
E::f();
E::E::f();
E::E::E::E::f();
}
why is it possible to do this ? It does not work with namespaces.