mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
154 B
D
9 lines
154 B
D
// PERMUTE_ARGS:
|
|
module a;
|
|
|
|
void main()
|
|
{
|
|
mixin("string mod1 = __MODULE__;");
|
|
mixin("enum mod2 = __MODULE__;");
|
|
static assert(mod2 == "a");
|
|
}
|