mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

* Fix Bugzilla 24387 - Base class construction ignores private * Fix access checks for ctor overloads
7 lines
78 B
D
7 lines
78 B
D
module issue21685;
|
|
|
|
class E
|
|
{
|
|
private this() {}
|
|
public this(int) {}
|
|
}
|