http://d.puremagic.com/issues/show_bug.cgi?id=9090
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] 2012-12-07 11:34:41 PST --- This also happens with ref and plain types. ---- void test1(ref const char[] val) {} void main() { string a; test1(a); } ---- void test1(ref const(char) val) {} void main() { immutable char a; test1(a); } ---- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
