2 // { dg-do compile { target c++11 } }
7 template <typename, int N>
8 struct R { static constexpr auto h = A{S{N}}; };
10 template <typename, int N>
11 struct R2 { static constexpr auto h = A{S{{N, N}}}; };
13 A foo = R<int, 10>::h;
14 A foo2 = R2<int, 10>::h;