February 20, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1854

           Summary: bug in new flow analysis (warnings on valid code)
           Product: D
           Version: 2.011
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: critical
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: spam@extrawurst.org


this code gives warning if compiled via -w though it should not:

[CODE]
class Foo {
  int foo() {
      synchronized(this){
          return 8;
      }
  }
}
[/CODE]

warning - main.d(3): function main.Foo.foo no return at end of function


-- 

March 07, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1854


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2008-03-07 00:32 -------
Fixed dmd 2.012


--