// bindgen-flags: -- -std=c++14 template struct Array { T elements[Capacity]; }; template using Array16 = Array; using ArrayInt4 = Array; struct UsesArray { Array16 array_char_16; Array array_bool_8; ArrayInt4 array_int_4; };