blob: a34904f704c5fe5f97ded68c9a023f33c5e2152b (
plain)
1
2
3
4
5
6
|
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq.
struct foo {
float bar[3];
};
|