September 20, 2014
https://issues.dlang.org/show_bug.cgi?id=13505

          Issue ID: 13505
           Summary: No line number with void array in class
           Product: D
           Version: D2
          Hardware: x86
                OS: Windows
            Status: NEW
          Keywords: diagnostic
          Severity: major
          Priority: P1
         Component: DMD
          Assignee: nobody@puremagic.com
          Reporter: bearophile_hugs@eml.cc

class Foo {
    void[10] x;
}
void main() {}


dmd 2.067alpha gives no line number:

Error: void does not have a default initializer

--