When inheriting from a super class with private constructor, a call to the private super-constructor from inside the inheriting class is not recognized as error.
Example:
module abstractClass;
abstract class AbstractClass
{
private this()
{
}
}
---------------------
import abstractClass;
class InheritingClass : AbstractClass
{
public this()
{
super();
}
}