diff options
Diffstat (limited to 'tests/headers/non-type-params.hpp')
-rw-r--r-- | tests/headers/non-type-params.hpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/headers/non-type-params.hpp b/tests/headers/non-type-params.hpp deleted file mode 100644 index 3e2ccf8e..00000000 --- a/tests/headers/non-type-params.hpp +++ /dev/null @@ -1,17 +0,0 @@ -// bindgen-flags: -- -std=c++14 - -template <typename T, unsigned int Capacity> -struct Array { - T elements[Capacity]; -}; - -template <typename T> -using Array16 = Array<T, 16>; - -using ArrayInt4 = Array<int, 4>; - -struct UsesArray { - Array16<char> array_char_16; - Array<bool, 8> array_bool_8; - ArrayInt4 array_int_4; -}; |