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