https://issues.dlang.org/show_bug.cgi?id=12643
Justin Whear <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Justin Whear <[email protected]> --- The array literal will trip in this case. This test code compiles with the latest git head (v2.066-devel-8bee69a): unittest { void ensureNoGC() @nogc { int[] a1; auto a2 = a1.dropOne; auto s1 = "hello"; auto s2 = s1.dropOne; } } --
