summaryrefslogtreecommitdiff
path: root/tests/expectations/tests/inherit_named.rs
blob: a641de70b522764516ccfab5339e513d7f009c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* automatically generated by rust-bindgen */


#![allow(non_snake_case)]


#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct Wohoo {
    pub _address: u8,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Weeee<T> {
    pub _base: T,
    _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell<T>>,
}
impl <T> Default for Weeee<T> {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}