Comment #0 by dlang-bugzilla — 2017-07-02T00:24:09Z
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() { }
}
Comment #1 by razvan.nitu1305 — 2018-06-04T11:46:02Z