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

--- Comment #2 from ryuukk_ <[email protected]> ---
```
struct Test
{
    float[32] data;
}

extern (C) int main()
{
    Test b;
    Test c;

    bool r = b == c;

    return 0;
}
```


A struct that contains a float array also doesn't work

--

Reply via email to