1
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.

Rakete1111
  • 47,013
  • 16
  • 123
  • 162
Silviu
  • 909
  • 6
  • 6

0 Answers0