// bindgen-flags: --with-derive-hash --blocklist-type BlocklistMe --raw-line 'pub struct BlocklistMe(u8);' struct BlocklistMe {}; /** * Because this type contains a blocklisted type, it should not derive Hash. */ struct ShouldNotDeriveHash { BlocklistMe a; };