https://issues.dlang.org/show_bug.cgi?id=21625 --- Comment #1 from Max Samukha <maxsamukha at gmail.com> --- Same with static constructors: enum c = q{ static this() {} }; mixin(c); static this() { assert(false); } void main() { } --