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?
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?
Copyright © 2021 Jogjafile Inc.