https://issues.dlang.org/show_bug.cgi?id=15819
--- Comment #1 from Timothee Cour <timothee.co...@gmail.com> --- update: the following passes, ie array(temp) is ok but temp.array is not; why is that? (again, self contained single file test example here: https://github.com/timotheecour/dtools/blob/master/dtools/util/emit.d ) // ... import std.array:array; static assert(is(typeof(array(temp)))); static assert(!is(typeof(temp.array))); --