import std.array;void main(){//enum a1=[1].array;//NG: Error: gc_malloc cannot be interpreted at compile timeenum a2=" ".array;//OKimport std.string;//enum a3=" ".splitLines.array;//NGenum a4="".splitLines.array;//OKenum a5=" ".split.array;//OK//enum a6=" a ".split.array;//NGimport std.algorithm:filter;enum a7=" a ".split.filter!(a=>true).array;auto a8=" a ".split.array;assert(a8==a7);enum a9=[1].filter!(a=>true).array;//OK}I don't understand why the NG above fail (with Error: gc_malloc cannot be interpreted at compile time)furthermore, it seems we can bypass the CT error with interleaving filter!(a=>true) (see above), which is even weirder.