C++ scope resolution operator before funcions

31 Views Asked by At
namespace Test {
    struct T {};
    void F(T t) {}
};

int main() {
    Test::T t;
    F(t); // Why no `Test::`?
}

Why there is no need of Test:: before F(t)?

What is the rule behind this?

0

There are 0 best solutions below