blob: bf9448e793eb538e036e113a8e66ac07af8ea5f5 [file] [log] [blame]
// { dg-do compile { target c++14 } }
template <class T> struct A
{
static auto fn() { }
static void f()
{
auto x = fn;
}
};
int main()
{
A<int>::f();
}