https://issues.dlang.org/show_bug.cgi?id=16176

          Issue ID: 16176
           Summary: Unreachable code not detected with -w
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nob...@puremagic.com
          Reporter: bugzi...@digitalmars.com

void main () {
    char ch = '!';
    switch (ch) {
      ch = 'a';           // unreachable code
      case '!': break;
      default:
    }
  }

--

Reply via email to