https://issues.dlang.org/show_bug.cgi?id=15945
Marco Leise <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Marco Leise <[email protected]> --- You are not indexing T, you are creating a static array of length 0, hence why it returns 0 for the size. Try T.init[0] instead to use an instance of T. --
