[Issue 22082] static float array comparison not available in betterC

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Sep 14 00:19:56 UTC 2021


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

--


More information about the Digitalmars-d-bugs mailing list