July 04, 2020
https://issues.dlang.org/show_bug.cgi?id=11056

Basile-z <b2.temp@gmx.com> changed:

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

--- Comment #1 from Basile-z <b2.temp@gmx.com> ---
module test;

///
class C
{
    ///
    synchronized void f() { }
    pragma(msg, __traits(getFunctionAttributes, C.f));
}

void main() { }

gives

> tuple("shared", "@system")

--