diff options
Diffstat (limited to 'tests/headers/constant-non-specialized-tp.hpp')
-rw-r--r-- | tests/headers/constant-non-specialized-tp.hpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/constant-non-specialized-tp.hpp b/tests/headers/constant-non-specialized-tp.hpp deleted file mode 100644 index 539c2887..00000000 --- a/tests/headers/constant-non-specialized-tp.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// bindgen-flags: -- -std=c++11 - -// This test ensure we protect ourselves from an LLVM crash. - -template <class... Args> -struct Test { - static constexpr bool x[] = {Args::x...}; -}; - -template<typename... T> -struct Outer { - struct Inner { - static constexpr int value[] = { T::value... }; - }; -}; |