Open
Description
Input C/C++ Header
template <typename T, int N>
using array_field = T[N];
template <typename T, int N>
using renamed = array_field<T, N>;
Bindgen Invocation
$ bindgen array.hh -- -std=c++17
Actual Results
/* automatically generated by rust-bindgen 0.57.0 */
pub type array_field<T> = *mut T;
pub type renamed = array_field<T>;
Expected Results
/* automatically generated by rust-bindgen 0.57.0 */
pub type array_field<T> = *mut T;
pub type renamed<T> = array_field<T>;