[Issue 19292] Mixin expressions should take an argument list the same as pragma(msg) does

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Oct 8 03:10:03 UTC 2018


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

--- Comment #1 from Walter Bright <bugzilla at digitalmars.com> ---
Test case:

int test() {
    return mixin("1", 2);
}

void testit() {
    static assert(test() == 12);
}

--


More information about the Digitalmars-d-bugs mailing list