blob: 421352489041c6d69a6d759bfdf52b063b479c6d [file] [log] [blame]
// PR c++/23055
template <class> struct S { typedef int type; };
template <class T>
int foo(T, typename S<T>::type * ret);
int j = foo(1, 0);