Hi,
following code fails with errors:
class test.A member b is not accessible
I am not sure, whether it should work or not?
Kind regards
André
module app;
import test;
void main()
{
	A.b("");
}
module test;
class A
{
	private void b(){}
	static void b(string b){}
}