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