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

          Issue ID: 17580
           Summary: Marking methods as synchronized is allowed despite
                    spec
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: accepts-invalid, spec
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nob...@puremagic.com
          Reporter: dlang-bugzi...@thecybershadow.net

Spec (http://dlang.org/spec/class.html#synchronized-classes) says:

> Member functions of non-synchronized classes cannot be individually marked
> as synchronized.

Yet this compiles:

class S
{
    synchronized void fun() { }
}

--

Reply via email to