diff options
Diffstat (limited to 'tests/expectations/variadic_template_args.rs')
-rw-r--r-- | tests/expectations/variadic_template_args.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/expectations/variadic_template_args.rs b/tests/expectations/variadic_template_args.rs new file mode 100644 index 00000000..f0c68106 --- /dev/null +++ b/tests/expectations/variadic_template_args.rs @@ -0,0 +1,21 @@ +/* automatically generated by rust-bindgen */ + + +#![allow(non_snake_case)] + + +#[repr(C)] +pub struct RefPtr<T> { + pub _address: u8, + pub _phantom_0: ::std::marker::PhantomData<T>, +} +#[repr(C)] +pub struct RefPtr_Proxy<T, R, Args> { + pub _address: u8, + pub _phantom_0: ::std::marker::PhantomData<T>, + pub _phantom_1: ::std::marker::PhantomData<R>, + pub _phantom_2: ::std::marker::PhantomData<Args>, +} +pub type RefPtr_Proxy_member_function = + *mut ::std::option::Option<unsafe extern "C" fn(arg1: Args) + -> type-parameter-1-0>; |