blob: f339a755b263e86fe3286b5dacb1cc48694929a4 [file] [log] [blame]
class A
{
this() {}
}
class B : A
{
this()
{
static if (__traits(compiles, super()))
super();
}
}