blob: 1167c76bbdd771f493815c65e1b473128b43d10f [file] [log] [blame]
#[repr(C)]
pub struct Foo<T> {
a: T,
}
pub type Boo = Foo<*mut u8>;
#[no_mangle]
pub extern "C" fn root(
x: Boo,
) { }