blob: 3239cff0cf01d6bfe7a9efc19bc1c72351938d6d [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail4923.d(4): Error: immutable variable `bar` initialization is not allowed in `static this`
fail_compilation/fail4923.d(4): Use `shared static this` instead.
---
*/
#line 1
immutable int bar;
static this()
{
bar = 42;
}