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


#![allow(non_snake_case)]


#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct IndirectUsage<T, U> {
    pub member1: IndirectUsage_Typedefed<T>,
    pub member2: IndirectUsage_Aliased<U>,
    pub _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell<T>>,
    pub _phantom_1: ::std::marker::PhantomData<::std::cell::UnsafeCell<U>>,
}
pub type IndirectUsage_Typedefed<T> = T;
pub type IndirectUsage_Aliased<U> = U;
impl <T, U> Default for IndirectUsage<T, U> {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}