<!-- Thanks for filing a bindgen issue! We appreciate it :-) --> ### Input C/C++ Header ```C++ template <typename T, int N> using array_field = T[N]; template <typename T, int N> using renamed = array_field<T, N>; ``` ### Bindgen Invocation <!-- Place either the `bindgen::Builder` or the command line flags used here. --> ``` $ bindgen array.hh -- -std=c++17 ``` ### Actual Results ```rust /* automatically generated by rust-bindgen 0.57.0 */ pub type array_field<T> = *mut T; pub type renamed = array_field<T>; ``` ### Expected Results ```rust /* automatically generated by rust-bindgen 0.57.0 */ pub type array_field<T> = *mut T; pub type renamed<T> = array_field<T>; ```