xxxxxxxxxx
--- main.d
import file1;
void main()
{
auto f = Foo();
f.f();
}
--- file1.d
struct Foo {
private void f() {}
void f(int i) {}