https://issues.dlang.org/show_bug.cgi?id=21625

--- Comment #1 from Max Samukha <[email protected]> ---
Same with static constructors:

enum c = q{
static this() {}
};

mixin(c);
static this() {
    assert(false);
}

void main() {
}

--

Reply via email to