summaryrefslogtreecommitdiff
path: root/tests/headers/derive-hash-struct-with-float-array.h
blob: 937217a0ef3a6de8dd4f83f0ca5244901e6baf65 (plain)
1
2
3
4
5
6
// bindgen-flags: --with-derive-hash --with-derive-partialord --with-derive-partialeq --with-derive-eq
//
/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq and partialord
struct foo {
    float bar[3];
};