1 // bindgen-flags: --with-derive-partialeq --blocklist-type BlocklistMe --raw-line 'pub struct BlocklistMe(u8);' 2 3 struct BlocklistMe {}; 4 5 /** 6 * Because this type contains a blocklisted type, it should not derive 7 * PartialEq. 8 */ 9 struct ShouldNotDerivePartialEq { 10 BlocklistMe a; 11 }; 12