Is it possible to call all shared static ctors in betterC?

```d
//-betterC

static immutable int i;

shared static this(){
        i = 42;
}
extern(C) void main(){
    assert(i != 42);

}
```

Reply via email to