(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
ttp19.C
// PR c++/27689

void f (...);
template <template <typename> class F, typename T> void f (F<T>);
template <typename> struct foo { struct bar {}; };
void g (foo<int>::bar x) { f(x); }