PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / non-deducible1.C
blob421352489041c6d69a6d759bfdf52b063b479c6d
1 // PR c++/23055
3 template <class> struct S { typedef int type; };
5 template <class T>
6 int foo(T, typename S<T>::type * ret);
8 int j = foo(1, 0);