blob: 953d0677142f8b7d22e79e1d690cc55697276afa [file] [log] [blame]
// bindgen-flags: --with-derive-partialeq --blocklist-type BlocklistMe --raw-line 'pub struct BlocklistMe(u8);'
struct BlocklistMe {};
/**
* Because this type contains a blocklisted type, it should not derive
* PartialEq.
*/
struct ShouldNotDerivePartialEq {
BlocklistMe a;
};