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