blob: c15f93ad7536af876556a3715106381cd4900a62 [file] [log] [blame]
// Contributed by Dodji Seketeli <dodji@redhat.com>
// { dg-do compile { target c++11 } }
struct F { F(int) {}};
template<class T, T* u>
struct S
{
decltype(u) foo(T);
};
template<class T, T *u>
decltype(u) S<T, u>::foo(T)
{
T t;
return t;
}