https://issues.dlang.org/show_bug.cgi?id=23310

--- Comment #7 from ryuukk_ <[email protected]> ---
```
enum Test {A, B, C}

Test test = Test.A;

extern(C) void main()
{
    switch(test)
    {
        default:
        break;
    }
}
```

without object.d, compiles fine, runs fine

it doesn't initialize the runtime, so the issue must be something else?

The moment i add `object.d` in the folder, the same code segfaults

--

Reply via email to