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


#![allow(non_snake_case)]


pub type MaybeWrapped<A> = A;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Rooted<T> {
    pub ptr: MaybeWrapped<T>,
    pub _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell<T>>,
}
impl <T> Default for Rooted<T> {
    fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}