2 // { dg-do compile { target c++11 } }
7 static constexpr int a[sizeof...(V)] = { V... };
10 template <int... V> constexpr int A<V...>::a[];
16 template <unsigned int N>
17 constexpr B(const int(&b)[N])
27 constexpr B b1 = A<10, 20, 30>::a;
28 constexpr B b2 = A<10, 20, 30>();