Code ---- class Homu { const const(string[string][string]) homuhomu() { return homuhomu_; } private: string[string][string] homuhomu_; } ---- Compile error(dmd 2.056) ---- Error: forward reference to type const(string) Error: cannot implicitly convert expression (this.homuhomu_) of type const(immutable(char)[][string][string]) to const(string[string][string]) ----
This one compiles and runs fine with 2.059
Was fixed by https://github.com/D-Programming-Language/dmd/pull/430 .