https://issues.dlang.org/show_bug.cgi?id=14836
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from [email protected] --- Another workaround: ---- template alpha(alias Beta, Charlie...) { void impl(Delta...)() if (Delta.length == 0) {/*...*/} void impl(Delta...)(Delta delta) if (Delta.length > 0) {/*...*/} alias alpha = impl; } ---- --
