• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --with-derive-hash --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 Hash.
7  */
8 struct ShouldNotDeriveHash {
9     BlocklistMe a;
10 };
11