1 // bindgen-flags: --impl-debug --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 Debug. 7 */ 8 struct ShouldManuallyImplDebug { 9 BlocklistMe a; 10 }; 11