https://issues.dlang.org/show_bug.cgi?id=18094
anonymous4 <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |spec Hardware|x86_64 |All Severity|critical |normal --- Comment #3 from anonymous4 <[email protected]> --- Originally it was a collection code. Well, const works too: --- void put(const string item) { } void put(in string[] items...) { assert(items.length!=0); foreach(item;items)put(item); } --- --
