1// PR c++/23055
2
3template <class> struct S { typedef int type; };
4
5template <class T>
6int foo(T, typename S<T>::type * ret);
7
8int j = foo(1, 0);
9