https://issues.dlang.org/show_bug.cgi?id=15279
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- I don't think this is an issue with dchar/char. The same happens with int: ---- void main() { int d; switch (d) { case 0: .. case 0x0101: break; } } ---- Looks like more than 256 cases are not supported. --
