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

Nemanja Boric <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Nemanja Boric <[email protected]> ---
I hit the same bug today:

```
import std.traits;

struct S
{
    int a, b, c, d, e, f;
}

void main()
{
    S s;

    foreach (name; ["a", "b", "c"])
    {
        switch (name)
        {
            foreach (i, ref field; s.tupleof)
            {
                case __traits(identifier, S.tupleof[i]):
                    field = 0; // s.tupleof[i] = 0; works
                    break;
            }
            default:
                break;
        }
    }
}
```

--

Reply via email to