blob: a789e934ef1e65d5b6b4c43fa7e26263b693a904 [file] [log] [blame]
// { dg-do assemble }
// Reported by Bruce Eckel <Bruce@EckelObjects.com>
// [temp.deduct.type]
// Make sure we treat <T> in the construct TT<T> as any type containing T.
template <class T> class C
{
};
template <class T, template <class> class TT> void f (TT<T *> &t)
{
}
int main ()
{
C<char *> c;
f(c);
}