blob: b7eb26af86a308ca48f81055ccfc8099a607f0ca [file] [log] [blame]
mixin template impl()
{
alias T = typeof(this);
enum doImplement = is(T : I);
static if (doImplement)
{}
}
interface I {}
class A : I {mixin impl;}