https://d.puremagic.com/issues/show_bug.cgi?id=11503
yebblies <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from yebblies <[email protected]> 2013-11-12 18:31:46 EST --- Simpler example: import std.stdio; immutable int[] x = [1, 2, 3]; auto makes() pure { return x; } void main() { auto a = x; int[] b = makes(); writefln("%s %s", a.ptr, b.ptr); } -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
