1// bindgen-flags: --no-recursive-allowlist --allowlist-type "local_type" --with-derive-hash --no-derive-copy --no-derive-default --raw-line "#[repr(C)] #[derive(Debug)] pub struct extern_type;" 2// bindgen-parse-callbacks: blocklisted-type-implements-trait 3 4struct extern_type {}; 5 6typedef struct 7{ 8 struct extern_type inner; 9} 10local_type; 11