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
  • 44,719
  • 11
  • 118
  • 156
Silviu
  • 839
  • 6
  • 6

0 Answers0