dmd/compiler/test/runnable/extra-files/m2.d
2022-07-09 18:53:07 +02:00

11 lines
160 B
D

static this()
{
auto k = keywords;
}
immutable int[] keywords = [42];
void f()
{
assert(keywords.ptr !is null); /* fails; should pass */
}