πAccess qualifiers
namespace x {
func test() {
// ...
}
}
...
x::test(); // error: can't access private function from this contextnamespace x {
public func test() {
// ...
}
}Last updated
namespace x {
func test() {
// ...
}
}
...
x::test(); // error: can't access private function from this contextnamespace x {
public func test() {
// ...
}
}Last updated