1 // bindgen-flags: -- -std=c++11
2 
3 // This test ensure we protect ourselves from an LLVM crash.
4 
5 template <class... Args>
6 struct Test {
7   static constexpr bool x[] = {Args::x...};
8 };
9 
10 template<typename... T>
11 struct Outer {
12   struct Inner {
13     static constexpr int value[] = { T::value... };
14   };
15 };
16