D-Scanner icon indicating copy to clipboard operation
D-Scanner copied to clipboard

False positive for "variable is never modified" for a struct instance modified via __traits(getMember)

Open andrej-petrovic opened this issue 5 years ago • 0 comments

void main()
{
    struct S { int i; }

    S s;

    __traits(getMember, s, "x") = 88;
}

D-Scanner reports:

./source/app.d(5:7)[warn]: Variable s is never modified and could have been declared const or immutable.

andrej-petrovic avatar Mar 07 '20 22:03 andrej-petrovic