blob: bf7ceb845e695d22368335597a3937091693a3c4 [file] [log] [blame]
#[repr(C)]
struct Foo<T, U> {
x: T,
y: U,
}
type IntFoo<T> = Foo<i32, T>;
#[no_mangle]
pub extern "C" fn root(a: IntFoo<i32>)
{ }