d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test17059.d
blobb7eb26af86a308ca48f81055ccfc8099a607f0ca
1 mixin template impl()
3 alias T = typeof(this);
4 enum doImplement = is(T : I);
6 static if (doImplement)
7 {}
10 interface I {}
11 class A : I {mixin impl;}