https://issues.dlang.org/show_bug.cgi?id=22082
--- Comment #2 from ryuukk_ <ryuukk.dev at gmail.com> ---
```
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
--