On 10/12/13, Namespace <[email protected]> wrote: > Bug or feature? :P
Has to be a bug. Reduced:
-----
module a;
import b;
void main()
{
auto s = S();
auto f = &s.f; // no error
f(); // no error
auto sf = &S.sf; // error
}
-----
-----
module b;
struct S
{
private void f() { }
private static void sf() { }
}
-----
