http://d.puremagic.com/issues/show_bug.cgi?id=7161
Denis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code --- Comment #1 from Denis <[email protected]> 2011-12-24 15:54:03 MSK --- Workaround: wrap every passed string `f("abc")` like `f(s("abc"))` and `f("11", "22", "33")` like `f(s("11"), s!1("22"), s!2("33"))` where `s` is: --- ref string s(size_t n = 0)(string s) { static string ss; ss = s; return ss; } --- It does have an easy workaround but is very annoying. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
