1 // PR c++/65579 2 // { dg-do link { target c++11 } } 3 4 template <typename> 5 struct S { 6 int i; 7 }; 8 9 struct T { 10 static constexpr S<int> s = { 1 }; 11 }; 12 main()13 int main() 14 { 15 return T::s.i; 16 } 17