summaryrefslogtreecommitdiffstats
path: root/tests/rust/typedef.rs
blob: bf7ceb845e695d22368335597a3937091693a3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[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>)
{ }