blob: 88fd9728331c5c289fe00dce1e9ec5268f4ba2f1 [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#[repr(C)]
pub struct Generic<T> {
pub t: [T; 40usize],
pub _phantom_0: ::std::marker::PhantomData<::std::cell::UnsafeCell<T>>,
}
impl<T> Default for Generic<T> {
fn default() -> Self {
unsafe { ::std::mem::zeroed() }
}
}
impl<T> ::std::fmt::Debug for Generic<T> {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
write!(f, "Generic {{ t: Array with length 40 }}")
}
}