blob: ef337c0be600bb8482b565a632ddffe08dd5b61a [file] [log] [blame]
// PR c++/79607
// { dg-do compile { target c++11 } }
template<typename T> struct A
{
static const int i = int{T{}};
};
A<int> a;