Static variables are initialized after executing static constructor, while they should before.
class Foo:
static a = 'hello'
static def constructor():
assert a != null
Foo()
Description
Static variables are initialized after executing static constructor, while they should before.
class Foo:
static a = 'hello'
static def constructor():
assert a != null
Foo()