Comment #0 by dlang-bugzilla — 2023-06-14T11:48:07Z
/////////// c.d ///////////
class C
{
private void fun() {}
public void fun(int) {}
}
////////// test.d /////////
import c;
void main()
{
auto c = new C;
c.fun();
}
///////////////////////////
Introduced in https://github.com/dlang/dmd/pull/9721
Comment #1 by dlang-bugzilla — 2023-06-14T12:45:57Z
*** This issue has been marked as a duplicate of issue 23947 ***