Comment #1 by matti.niemenmaa+dbugzilla — 2008-02-16T06:49:18Z
No, this is actually worse. The warning comes from the following minimal example, and it has to do with forward referencing:
class ZipEntry {
ZipEntryInfo info;
this() {}
}
struct ZipEntryInfo {}
Move ZipEntryInfo above ZipEntry and the warnings disappear.