This `@nogc` function compiles, but allocates an array literal with the GC at runtime: ```D void f() @nogc { enum DA : int[] { a = [1,2,3] } DA da; } ```