blob: 4b3a4a535b57389080c8265e4207fcec50d643a2 [file] [log] [blame]
// bindgen-flags: --with-derive-hash --blacklist-type BlacklistMe --raw-line 'pub struct BlacklistMe(u8);'
struct BlacklistMe {};
/**
* Because this type contains a blacklisted type, it should not derive Hash.
*/
struct ShouldNotDeriveHash {
BlacklistMe a;
};