blob: b4b39fe40dd99babc87e3d7b98967c3b396376d8 [file] [log] [blame]
// bindgen-flags: --impl-debug --blacklist-type BlacklistMe --raw-line 'pub struct BlacklistMe(u8);'
struct BlacklistMe {};
/**
* Because this type contains a blacklisted type, it should not derive Debug.
*/
struct ShouldManuallyImplDebug {
BlacklistMe a;
};