http://d.puremagic.com/issues/show_bug.cgi?id=4803
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Andrej Mitrovic <[email protected]> 2010-09-03 10:29:52 PDT --- What exactly is the purpose of a constant string type? That type evaluates to const(immutable(char)[]), which wouldn't make much sense to me. Note that this will work: import std.range: chain; void main() { const (char)[] s = "hello"; auto r = chain(s, s); } But I'm not sure if that's what you were after. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
