On 25.11.2015 21:06, Meta wrote:
...Which doesn't work because it won't compile without a default case.
Is this a recent change? I don't remember D doing this before.

Use `final switch`. Ordinary `switch`es need an explicit default case. `final switch`es have to cover all possibilities individually. Implicit default cases are not allowed.

Reply via email to